Re: [PHPTAL] Inject PHP Code into template?

2009-02-02 Thread Joshua Paine
Look at the documentation for tales modifiers, write one, and use a static variable in the function to hold on to a single Zend_Date instance. That way, you have to check whether it is set each time the function is run, but if you don't end up using it at all, you never have to create the Zend_Date

Re: [PHPTAL] Inject PHP Code into template?

2009-02-02 Thread Christian Welzel
Am Montag 02 Februar 2009 schrieb Iván -DrSlump- Montes: > The PHPTAL way would be to create a custom tales modifier [1], Exactly thats what i want to do. -- MfG, Christian Welzel GPG-Key: http://www.camlann.de/key.asc Fingerprint: 4F50 19BF 3346 36A6 CFA9 DBDC C268 6D24 70A1 AD15 __

Re: [PHPTAL] Inject PHP Code into template?

2009-02-02 Thread Iván -DrSlump- Montes
The PHPTAL way would be to create a custom tales modifier [1], although what admirau proposes will also work. [1] http://phptal.motion-twin.com/manual/en/split/ar06s08.html ciao, /imv On Mon, Feb 2, 2009 at 6:45 PM, admirau wrote: > W dniu 2009-02-02 18:31, Christian Welzel pisze: > >> Hi ther

Re: [PHPTAL] Inject PHP Code into template?

2009-02-02 Thread admirau
W dniu 2009-02-02 18:31, Christian Welzel pisze: Hi there, is there a way to inject PHP code into the template during compiiation? I want to make a date: helper for phptal which uses Zend_Date for convertions. But creation of Zend_Date is a bit expensive, so i want to create an instance on the be

[PHPTAL] Inject PHP Code into template?

2009-02-02 Thread Christian Welzel
Hi there, is there a way to inject PHP code into the template during compiiation? I want to make a date: helper for phptal which uses Zend_Date for convertions. But creation of Zend_Date is a bit expensive, so i want to create an instance on the begin of the template file and use it later in the h

[PHPTAL] Redefining template variables

2009-02-02 Thread kaaposc
Hello! When playing with multi-level macro nesting (like in recent thread "Macros in macros") I tried to figure out how to redefine template variables. Let's say, I have this structure: $data => Object ( "title" => string, "name" => string "parent" => Object ( "title" => st