Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

HTML::Template: group <tmpl_var>s

by Spidy (Chaplain)
on Nov 09, 2006 at 17:34 UTC ( [id://583168]=perlquestion: print w/replies, xml ) Need Help??

Spidy has asked for the wisdom of the Perl Monks concerning the following question:

Greetings fellow monks,

I've been doing some work with HTML::Template lately, and one piece of it that I found to be immensely useful was the <tmpl_loop> tag. It made it easy to group together all of the variables I would need for specific areas of my output that were to be repeated. However, I have a question:

Is there a way to do this other than using a <tmpl_loop>? I have a piece of template that won't be repeated, and it would be easier to fill it in the same way you fill in <tmpl_loop> tags than to have multiple param() calls.



Thanks,
Spidy

Replies are listed 'Best First'.
Re: HTML::Template: group <tmpl_var>s
by rhesa (Vicar) on Nov 09, 2006 at 18:06 UTC
    HTML::Template offers a number of ways of setting params. You can call param() for every pair of names and values, or pass in several of those pairs in one go:
    # set one variable: $t->param( some => 'value' ); # set a number of them $t->param( one => 'value', two => 'value', three => 'value', ); # pass in an existing hash $t->param( %lots_of_values ); # pass in a reference to a hash $t->param( $ref_to_hash );
    As you can see, there are a number of ways to group your input.
Re: HTML::Template: group <tmpl_var>s
by stonecolddevin (Parson) on Nov 09, 2006 at 18:20 UTC

    I think I know what you mean. I use <TMPL_LOOP> not only when I'm doing actual loops, but to speed up the coding when retrieving, say, a single user's information from a database. I don't think there's any better way, because this isn't really a bad way to do it in the first place.

    I always use something like:

    $tmpl->param( filename => 'one_users_information.tmpl', user =>\@userinfo );

    HTH.

    meh.
Re: HTML::Template: group <tmpl_var>s
by tinita (Parson) on Nov 09, 2006 at 17:51 UTC
    could you give a small example of what you want to do?
Re: HTML::Template: group <tmpl_var>s
by skx (Parson) on Nov 09, 2006 at 19:03 UTC

    You could just put all the parameters into place with one call, like this:

    $template->param( foo => "bar", username => "steve", is_admin => 0 );

    Sure that doesn't use loops, or arrays as the tmpl_loop construct would, but you've avoided multiple param() calls.

    Steve
    --
Re: HTML::Template: group <tmpl_var>s
by friedo (Prior) on Nov 09, 2006 at 18:06 UTC
    You might want to take a look at HTML::Template::Plugin::Dot which lets you access complex structures with Template-Toolkit-like syntax. Then you can just pass an array or hash to your template and access it without looping.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://583168]
Approved by ikegami
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (4)
As of 2024-04-20 09:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found