in reply to Re: (elbie): Template Toolkit, and delaying the execution of a function
in thread Template Toolkit, and delaying the execution of a function
Here's my modified code:
my $tmpl_stash = Template::Stash->new( { 'show_subcat' => \&show_subcat( $lpmkey ), } ); my $tmpl_data = { "${lpmkey}select" => ' selected', # 'show_subcat' => show_subcat( $lpmkey ), 'lpmcat' => $lpmkey, 'lpmcategory' => { 'l' => 'Logos', 'p' => 'Photos', 'm' => 'More', }->{ $lpmkey }, };
And then I have a <code>{#PERL#} block like you suggested in your post. I also just tried running the subroutine from the block directly, avoiding using Template::Stash, but I'm still running into the same problem.
Any help would be appreciated.
elbieelbieelbie
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: (elbie 3): Template Toolkit, and delaying the execution of a function
by perrin (Chancellor) on Aug 21, 2001 at 03:42 UTC |