|
Posted by "messju mohr" on 09/30/03 11:22
On Tue, Jul 26, 2005 at 01:39:14PM -0700, JM wrote:
> Ok I have a group of Smarty variable assignments that I want to put in
> a php function so I can call it at various points in the script.
> However, it's not returning any data when I call the function. Any
> ideas?
>
> <?php
> function meat($obj)
if this is php4 you have to pass $obj by reference:
function meat(&$obj)
HTH
messju
> {
> $obj->assign('template_var1', $var1);
> $obj->assign('template_var2', $var2);
>
> return $obj;
> }
>
> // Smarty setup and object blah blah
>
> $template = "page.htm";
> $var1 = "yes";
> $var2 = "no";
>
> meat($obj);
>
> $smarty->display($template);
>
> ?>
>
> --
> Smarty General Mailing List (http://smarty.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
Navigation:
[Reply to this message]
|