Tagged Questions

PHPTAL is a templating engine for PHP5 that implements the brilliant Zope Page Templates syntax.

learn more… | top users | synonyms

3
votes
2answers
313 views

How do I conditionally add an id attribute in TAL (PHPTAL)?

I'm creating a form elements template file in PHPTAL. I would like to be able to OPTIONALLY pass in an id attribute for a field... So far the code looks like this: <xml> <tal:block ...
3
votes
2answers
615 views

Zebra Striping with PHPTAL?

I'm trying out PHPTAL and I want to render a table with zebra stripes. I'm looping through a simple php assoc array ($_SERVER). Note that I don't want to use jQuery or anything like that, I'm trying ...
2
votes
1answer
167 views

PHPTAL -Trying to get property of non-object while using macros

I am using PHPTAL 1.2.2 Template page is template.tpl <form> <div tal:repeat="field fields"> <tal:block tal:define="name repeat/field/key" ...
2
votes
1answer
56 views

PHPTAL and specyfic table

I have to create specyfic table in PHPTAL. so I have array like that: $tab = array('item1', 'item2', 'item3', 'item4'); Final table should be look like that: <table> <tr> ...
2
votes
1answer
391 views

PHPTAL i18n Call to a member function on a non-object Error

I'm using PHPTAL in my project I'm able to successfully implement it almost all the cases except when I want to use its i18n services. I constantly get errors "Call to a member function on a ...
2
votes
1answer
330 views

PHPTAL and nested templates. Possible?

I've been playing around with PHPTAL for the last couple of days. Overall I really like it. It's been much easier to get into than most others I've looked into. I am having one particular problem, ...
2
votes
1answer
303 views

PHPTAL: graceful treatment of undefined variables

If I use a variable that hasn't been put into the scope, PHPTAL throws an exception. Is there any way of making PHPTAL fall back to graceful defaults, for example evaluating to false in a boolean ...
1
vote
1answer
20 views

PHPTAL Dynamic Table Generation

I find myself creating various tables for tabular data quite a bit, and would like to create a macro that can dynamically create tables based on a data structure defined in the calling template (not ...
1
vote
1answer
203 views

Integrate PHPTAL template engine into yii framework

I'm wondering that how to integrate PHPTAL into yii framework? I'm using PHPTAL for a long time and it's nice template engine. Although Yii allows integrate another template engine into framework but ...
1
vote
1answer
32 views

PHPTAL replace but keep certain attributes?

Is it possible to do a tal:replace="whatever" but maintain certain attributes of the element/tag? For example, if you have the following: <input type='text' value='test' name='hello' ...
1
vote
1answer
64 views

Using tal:content and getting <br/>

I am using Zend Framework with PHPTAL templates for view sites. Problem is that I have <span> that contains tal:content = value. Value is the field (string) from database which contains html ...
1
vote
2answers
103 views

PHPTAL - No template file specified

I have an identical site running on two different servers, and for some reason I am presented with the following error message on one of the servers when I either login or logout of the CMS on the ...
1
vote
1answer
119 views

phptal: how do I repeatedly add attributes?

I got a phptal template question, I have an associative array which contains HTML attribute information, eg attrs['href'] = 'www.google.com'; attrs['id'] = 'the_link'; ... Is there a way to use the ...
1
vote
2answers
431 views

Checking for empty variable in PHPTAL condition

In PHPTAL tal:condition can check is variable empty? Something like that: < tag tal:condition="var" >Some text< /tag > but the value of variable is like that: <?php $variable = ''; ...
1
vote
2answers
262 views

PHPTAL Nested Repeat

I am having an problem trying to achieve a nested repeat in PHPTAL: <tr tal:repeat="business analysis_result"> <td>${business/trading_name}</td> <tal:block ...
1
vote
2answers
95 views

Cleanup Symfonys View Templates

I'm evaluating the PHP webframework: Symfony for a project. Everything is quite well organized so far, except for the view templates which suffer from an unreadable/error prone mix of html and php (I ...
0
votes
1answer
20 views

How to require PHPTAL.php

How do I require PHPTAL.php that I added to my buildpath (PHP Include path folder)? It would do with either an absolute or relative path.
0
votes
1answer
34 views

PHPTAL Conditional Attribute

Given a metal macro that looks like this: <tal:block metal:define-macro="foo"> <option value="1">Foo</option> <option value="2">Bar</option> <option ...
0
votes
1answer
64 views

PHPTAL and CSV in array

I have data in CSV format: $result->names = array(array('x,y,z'),array('a,b,c')); for example: item.names = 'a,b,c' this code doesn't work: <div tal:repeat="item result"> <div ...
0
votes
1answer
42 views

What's wrong with my PHPTAL syntax?

.Quick question - I have the following, working syntax: <td tal:define="owner record/owner_id; user user/id; mode php:(owner eq user)?'_edit':'_view'; linkname php:(owner eq ...
0
votes
1answer
61 views

Strange printing problem

We have a certain page in our site that when you print, it doesn't come out properly! We also have a print button on the site that when you press it opens a "printing optimized" version of the page ...
-1
votes
1answer
17 views

I want insert to VAR in the tal:repeat

I want to know how to use this tal:repeat in my case. For example, I made this two codes: tr> td tal:repeat="table_info table_info" tal:content="table_info/Field"/> /tr> tr ...