Re: [SMARTY] php function call
"messju mohr" <[email protected]>
| Newsgroups | gmane.comp.php.smarty.general |
|---|---|
| Message-ID | <20050726211822.GA9552@dune> |
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
--
Smarty General Mailing List (http://smarty.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php