Tagged Questions
-1
votes
0answers
21 views
better way to do loop in template?
i'm trying to create a function / or class to loop(reusable) and separate php code and html markup, but no idea how , can anyone point me?thanks and appreciate
my template.php
class Template{
...
0
votes
2answers
45 views
Why am I seeing curly braces in this code?
I'm looking at someone else's HTML, and I see that all strings are output within curly braces.
Here's an example from the HTML document:
<td><div style="padding-top:10px; ...
0
votes
2answers
19 views
joomla 2.5 - bootstrap based template - elegant way to set up module width
I've created my own bootstrap based template with joomla 2.5.
I've planned two optional modules on a row inside a bar (which must hide if there are not modules inside it), but i want them to occupy ...
0
votes
1answer
33 views
php replacing text in a template engine
we have a situation where we have a template file like the following
<?php
$tpl = '
<p>This is the header</p>
{if "IS VALID"}
<p>The value is valid
{if "IS ...
0
votes
2answers
20 views
Wordpress template deleted, but still working and showing on template selection
I have a template front-page.php in my theme. Its name is "Front Page".
My problem is that when I commit changes in this file. It wont reflect on the front end. This happened just yesterday and I ...
0
votes
3answers
29 views
PHP variable is not accessible in HTML template
index.php
<?php
$title = "World";
echo loadTemplate();
?>
Template.php
<?php
function loadTemplate(){
return <<<EOF
Hello {$title}
EOF;
}
?>
On running ...
0
votes
2answers
34 views
Following the MVC paradigm straight, what is the correct way to do this?
Let's suppose i have a method $users->vip_time(), which will return either an array with the remaining time, like {15, 8, 48}, or Null if the user have no vip.
It should be displayed to the user in a ...
0
votes
1answer
24 views
Parsing Smarty syntax subset in PHP
For a project I'm working on, I need to parse a tiny flow-control language in PHP.
Smarty syntax would be ideal, but we wouldn't be able to use Smarty's caching and would only need a small subset of ...
0
votes
1answer
44 views
How to convert an html template to joomla
I am new to joomla and trying to change a simple html template to joomla template. I made changes over the templatedetails.xml and index.php. Now my template is visible at templates of joomla. But it ...
0
votes
1answer
17 views
Generating a video with web technologies from a template?
I am looking to create a system that will let a user create a video based on say an after effects file, or any others ( a premade template) but it would populate the users information in it instead. I ...
0
votes
0answers
15 views
Activating A Template Comment box, Recent/Featured Posts Section and Contact Form
I made an account in hopes of getting help for my problem. I'm using this template (http://quanticalabs.com/Lemon/Template/) for my portfolio website. I am trying to "activate" the 'recent posts' and ...
2
votes
1answer
24 views
Lazy loading variables in templates
Currently I am doing it like this:
function load_template($script, $args){
extract($args);
require __DIR__ . '/templates/' . $script;
}
In my controller code:
// if home page was requested
...
0
votes
1answer
52 views
[SOLVED]document.getElementById is NULL error
I have a function that listens for onkeyup event, that onkeyup checks to see if a box has a value and if not blank is supposed pull the value of an elementID which is a phone number called from ...
0
votes
1answer
22 views
Making a php template for blog page
I'm quite new to the whole php scene but I have managed to make a php header and footer and include them on my pages so I dont have to edit the header and footer on each page now. My next challenge is ...
0
votes
1answer
31 views
Abstraction level for MVC mass versions of a view
I have an MVC that serves a form to a view. I'm pondering the best approach to serving form content, that is form elements such as labels and form inputs such as selects. It is possible that the form ...
0
votes
1answer
38 views
Add custom field on page creation
I'm developing a custom template for the first time and I want allow the user that is creating a page or a post specify more things such as a summary of the post (I don't like the <!--more--> ...
0
votes
2answers
93 views
CodeIgniter create a layout/template library
Before I begin I have to say that I have recently started learning CodeIgniter, so I'm sorry if I repeat this subject once again.
In procedural php I would do something like this
// the header.php
...
0
votes
2answers
84 views
Yii Collect Data For Two Or More Models ( Get_Class() Expects Parameter 1 To Be Object, Array Given )
I get this error when I call CreateController : "get_class() expects parameter 1 to be object, array given "
Controll/actionCreate() is as follows:
public function actionCreate() {
$model = new ...
0
votes
1answer
26 views
Perf. issue / Too much calls to string manipulation functions
This question is about optimizing a part of a program that I use to add in many projects as a common tool.
This 'templates parser' is designed to use a kind of text pattern containing html code or ...
0
votes
3answers
55 views
Parse error: syntax error, unexpected '<' in
I have a Parse error in the template of my Joomla site. This is the exact error:
Parse error: syntax error, unexpected '<' in C:\wamp\www\Olugbenga\templates\webhost\index.php on line 193.
I've ...
0
votes
0answers
17 views
Using image sprites with dynamically called image urls
I have images that are being called into the webpage by calling thumbnail image links via an mysql database, however the images that are stored in the database are not static, they are dynamically ...
0
votes
1answer
46 views
Prevent Joomla to add slashes when save a template
I feel so dumb to ask this question... but... When I try to edit (with joomla template manager, joomla 3.0) a template that contain php code, when I save it joomla add slashes and so my php crash and ...
0
votes
2answers
38 views
Joomla upload of custom template
I have a template, that I configured according to upload to Joomla. I have tested this offline in my local Wamp server, here i worked fine. My template folder contain a CSS folder containing CSS files ...
-1
votes
0answers
22 views
using an div class instead of a background-image url
I have the following code that I am trying to update in order to speed up my website
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" ...
0
votes
2answers
47 views
PHP - Smarty templates - How to create context independant templates
I've started to learn Smarty templating engine hoping it would allow me to do what i have a hard time to do with PHP built-in templates, but i'm encountering a similar problem.
Let's assume that i ...
0
votes
2answers
33 views
Showing secondary nav on one page wordpress
I have this bit of code in my header:
<?php if (has_nav_menu('sub-header-menu', 'responsive')) { ?>
<?php wp_nav_menu(array(
'container' => '',
...
-1
votes
1answer
61 views
Static php pages from database [duplicate]
I surfed all around the internet and i couldn`t find an answer for my problem..so i ask You :)
I want to navigate, in my website, to pages in that format: http://example.com/category/page.php (eg: ...
0
votes
1answer
62 views
How to parse a variable inside a string inside a CodeIgniter view?
I have function called get_variable which grabs the value of a variable from the database.
Let's say the value of my variable (stored in the db) is something like: "I like $fruit"
I would like to ...
0
votes
1answer
25 views
Different wrapper background-images wordpress custom template
I need to load different background-images for the wrapper of my custom template, i need one in index.php, archive.php and in single.php.
I tried making a different div, but it doesn't works because ...
1
vote
1answer
109 views
OpenCart: How to disable province display on the invoice?
Although we have provinces in the Netherlands we do not use them in an address (postcode is the most important thing with us). For this reason I disabled the province in the OpenCart checkout process. ...
-1
votes
3answers
49 views
How pass array and variables to view in codigniter
i want to pass an array and two variables to my view my array is passed in views successfully but the two variable is undefined.can anyone help me how to pass those values to view.i tried ...
0
votes
2answers
44 views
How to do transitional for loop in Mustache template?
Just started using Mustache template in PHP. I've read Manual, but looks like there's no tranditional loop in Mustache.
How do I simulate the following loop in Mustache?
for($i=0; $i<10; $i++)
{
...
-3
votes
2answers
127 views
How to install Twig (PHP) on Windows (WAMP server)? [closed]
How can i install the templating engine Twig for PHP on a WAMP server please ?
On their website they say i should download a .dll (http://twig.sensiolabs.org/doc/intro.html#id1), but their link ...
0
votes
2answers
63 views
Word “Array” is Appearing on Blog Posts Page
I'm getting the word "Array" coming up on my blog POSTS page when I use the below code. I have a feeling that it relates to this line:
I am using a similar template for my PORTFOLIO and NEWS pages ...
1
vote
2answers
97 views
How to add another element to Yii radioButtonList template?
I need the radioButtonList with tooltip after each element.
I use this code:
<?php echo $form->radioButtonList($model, 'Field', CHtml::listData(FieldDataModel::model()->findAll(), 'id', ...
1
vote
1answer
53 views
How to use PHP templating features properly?
Before i get to the point, let me introduce the context :)
I've been working on the view layer of a MVC framwork i'm trying to develop. I've created several reusable views such as an accordion, a drop ...
0
votes
1answer
22 views
How to do multiple instances of Joomla for Template website?
I am thinking of running a website that sells Joomla template (similar like TemplateMonster). When I look at TemplateMonster, what come up into my mind is they have multiple instances of Joomla and ...
0
votes
2answers
71 views
How to show a specific ID from MySQL - Newbie
I've developed an PHP page that show all the itens from an MySQL table. Now I wanna show an specific item when the user click's one of the itens on this page. How do I get this specific ID an how do I ...
0
votes
1answer
33 views
requiring template files with classes
Hi I'm trying to make my own simple template system kind of thing
and I'm just learning about classes so I'm trying to do it with classes and objects.
it works if i put this in top of every document:
...
0
votes
1answer
135 views
MySQL data into template
I'm starting with PHP and I have this code that works fine:
<body>
<?
require("conexaoBD.php");
$sql = "SELECT * FROM tb_materia_prima";
$limite = mysql_query("$sql");
while ($sql = ...
0
votes
1answer
34 views
PHP Template Patterns UI and Content Decoupling
With respect,
I am looking for a way to organize my HTML markup within PHP for use in a website which delivers dominantly static content(read: for a .edu website). (While this is the main thrust for ...
0
votes
1answer
108 views
Opencart Compare items page duplicate [closed]
I have the Sellya theme by themeforest.
In the compare items page i get the items from categories to display first and after that- the compare page display.
See here: ...
-2
votes
1answer
56 views
Flash-Messages in Symfony2
Flash-Messages in Symfony2 doesen't seem to work in my twig-template
integration the templete in the symfony2 and doctorine and form
but this is not done
any one can help me
Thanks
0
votes
0answers
61 views
My comments template cuts my page in half when updating a comment
I have a problem with comments in the Wordpress theme I'm building. As of now, I can comment just fine, but whenever I do (press "reply", "edit comment", press the date, really anything that involves ...
0
votes
1answer
45 views
Using Database Variables for PHP Template Engine
So i wrote a template engine and it works, but i need help adding a feature to it. Here is the code for the main part:
public function parseFileContents($contents, array $values){
...
0
votes
3answers
72 views
A View object per page? or just one View object loading different templates?
In my application I have one View object which can load($template) a template to get it ready to be rendered using the render() method.
In all the stuff I have read about Views sometimes I see people ...
0
votes
0answers
32 views
How can I show pages containing PHP in phpBB?
I am trying to show custom pages on my phpBB forum.
What I did so far:
I renamed index.php to forum.php, edited functions.php like this
'U_INDEX' => ...
0
votes
1answer
34 views
Is it possible to define a template region to not cache when using Twig?
I am searching for a way to define a region or block within a template that Twig will not cache.
For an example of where this would be used:
On a website that shows a list of results after a search, ...
1
vote
1answer
75 views
Cakephp not sure if this business logic belongs in View?
I beginning experimenting with CakePHP, and I am contemplating whether calculation, probably business, logic that would determine what gets presented on the View should be in the view or somewhere ...
1
vote
2answers
86 views
Codeigniter Template Engine
Assume i have controller with the class name "google" and it contains some data example
// application/controller/google.php
$data = array(
'target' => 'earth',
'percentage' => 70
);
...





