Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

davorg's scratchpad

by davorg (Chancellor)
on Jun 01, 2004 at 17:05 UTC ( [id://358248]=scratchpad: print w/replies, xml ) Need Help??

Demo of passing a "dynamic variable" to a template".

#!/usr/bin/perl use strict; use warnings; use Template; my $tt = Template->new; $tt->process(\*DATA, { rand => sub { rand } }) or die $tt->error; __END__ A Random number: [% rand %]

A more complex example where the dynamic variable works on a list.

#!/usr/bin/perl use strict; use warnings; use Template; use List::Util 'shuffle'; my $tt = Template->new; my @a = (1 .. 10); $tt->process(\*DATA, { shuffle => sub { shuffle @{$_[0]} }, arr => \@a }) or die $tt->error; __END__ [% arr.join(':') %] [% shuffle(arr).join(':') %]

The last example reworked to use a custom vmethod.

#!/usr/bin/perl use strict; use warnings; use Template; use List::Util 'shuffle'; no warnings 'once'; # turn off annoying error $Template::Stash::LIST_OPS->{ shuffle } = sub { my $list = shift; return [ shuffle @$list ]; }; my $tt = Template->new; my @a = (1 .. 10); $tt->process(\*DATA, { arr => \@a }) or die $tt->error; __END__ [% arr.join(':') %] [% arr.shuffle.join(':') %]
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (3)
As of 2024-03-29 14:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found