.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "HTML::Template::Plugin::Dot 3pm" .TH HTML::Template::Plugin::Dot 3pm 2024-03-30 "perl v5.38.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME HTML::Template::Plugin::Dot \- Add Magic Dot notation to HTML::Template .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 2 \& use HTML::Template::Pluggable; \& use HTML::Template::Plugin::Dot; \& \& my $t = HTML::Template::Pluggable\->new(...); .Ve .PP Now you can use chained accessor calls and nested hashrefs as params, and access them with a dot notation. You can even pass arguments to the methods. .PP For example, in your code: .PP .Vb 1 \& $t\->param( my_complex_struct => $struct ); .Ve .PP And then in your template you can reference specific values in the structure: .PP .Vb 2 \& my_complex_struct.key.obj.accessor(\*(Aqhash\*(Aq) \& my_complex_struct.other_key .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" By adding support for this dot notation to HTML::Template, the programmers' job of sending data to the template is easier, and designers have easier access to more data to display in the template, without learning any more tag syntax. .SS EXAMPLES .IX Subsection "EXAMPLES" .SS "Class::DBI integration" .IX Subsection "Class::DBI integration" Class::DBI accessors can be used in the template. If the accessor is never called in the template, that data doesn't have to be loaded. .PP In the code: .PP .Vb 1 \& $t\->param ( my_row => $class_dbi_obj ); .Ve .PP In the template: .PP .Vb 1 \& my_row.last_name .Ve .PP This extends to related objects or inflated columns (commonly used for date fields). Here's an example with a date column that's inflated into a DateTime object: .PP .Vb 2 \& my_row.my_date.mdy(\*(Aq/\*(Aq) \& my_row.my_date.strftime(\*(Aq%D\*(Aq) .Ve .PP Of course, if date formatting strings look scary to the designer, you can keep them in the application, or even a database layer to insure consistency in all presentations. (Note: for the latter example to work correctly, you should set the option "case_sensitive" to a true value.) .PP Here's an example with related objects. Suppose you have a Customer object, that has_a BillingAddress object attached to it. Then you could say something like this: .PP .Vb 5 \& \& \& \& ... \& .Ve .SS "More complex uses" .IX Subsection "More complex uses" The dot notation allows you to pass arguments to method calls (as in the \&\f(CW\*(C`my_date.dmy(\*(Aq/\*(Aq)\*(C'\fR example above). In fact, you can pass other objects in the template as well, and this enables more complex usage. Imagine we had a (fictional) Formatter object which could perform some basic string formatting functions. This could be used in e.g. currencies, or dates. .PP In your code: .PP .Vb 2 \& $t\->param( Formatter => Formatter\->new, \& order => $order_obj ); .Ve .PP In your template: .PP .Vb 1 \& Amount: .Ve .PP (hint: see Number::Format) .PP This even extends to references to plain tmpl_vars in your template: .PP .Vb 2 \& $t\->param( Formatter => Formatter\->new, \& plain => \*(AqJane\*(Aq ); \& \& is \& backwards .Ve .PP Note: for "nested" parameters to work correctly, you should supply both params at the same time: .PP .Vb 2 \& # for this template snippet, \& \& \& # this works \& $t\->param( o1 => $o1, o2 => $o2); \& \& # but this doesn\*(Aqt \& $t\->param( o1 => $o1 ); \& $t\->param( o2 => $o2 ); \& # and neither would swapping the two lines. \& \& # if your template has another, separate reference to the inner param, \& \& \& \& # then it works, provided you specify o2 before o1 \& $t\->param( o2 => $o2 ); \& $t\->param( o1 => $o1 ); .Ve .SS TMPL_LOOPs .IX Subsection "TMPL_LOOPs" As of version 0.94, the dot notation is also supported on TMPL_LOOP tags (but see the "LIMITATIONS" section). .PP Given an object method (or a hash key) that returns an array or a reference to an array, we will unwrap that array for use in the loop. Individual array elements are mapped to a hash \f(CW\*(C`{ \*(Aqthis\*(Aq => $elt }\*(C'\fR, so that you can refer to them in TMPL_VARs as "this.something". .PP An example might help. Let's use the canonical Class::DBI example for our data. Suppose you have an \f(CW$artist\fR object, which has_many CDs. You can now pass just the \f(CW$artist\fR object, and handle the loops in the template: .PP .Vb 1 \& $t\->param( artist => $artist ); .Ve .PP The template: .PP .Vb 4 \& has released these albums: \& \& \- \& .Ve .PP As you can see, each element from the artist.\fBcds()\fR array is called "this" by default. You can supply your own name by appending ': name' like this: .PP .Vb 3 \& \& \& ... .Ve .PP That's not the end of it! You can even nest these loops, displaying the Tracks for each CD like so: .PP .Vb 6 \& \& \& \& \- ( ) \& \& .Ve .SS LIMITATIONS .IX Subsection "LIMITATIONS" .IP \(bu 4 Casing of parameter names .Sp Casing of parameter names follows the option \f(CW\*(C`case_sensitive\*(C'\fR of HTML::Template. If you do not use that option, all parameter names are converted to lower case. I suggest turning this option on to avoid confusion. .IP \(bu 4 Quotes and spaces .Sp Because of the way HTML::Template parses parameter names (which follows the rules of HTML attributes), you have to be careful when your expressions contain spaces or quote characters. You can say \&\f(CW\*(C`\*(C'\fR, but not \&\f(CW\*(C`\*(C'\fR. You can use single or double quotes around your entire expression, and then use the other one inside: \&\f(CW\*(C`\*(C'\fR This is the recommended way to write your expressions. .Sp (Note: within expressions, the characters in \f(CW\*(C`[\`\*(Aq"]\*(C'\fR are recognised as quote characters. So if you need to pass literal quotes to a method, you could do it like this: \f(CW\*(C`\*(C'\fR. ) .SS PERFORMANCE .IX Subsection "PERFORMANCE" No attempt to even measure performance has been made. For now the focus is on usability and stability. If you carry out benchmarks, or have suggestions for performance improvements, be sure to let us know! .SH CONTRIBUTING .IX Header "CONTRIBUTING" Patches, questions and feedback are welcome. This project is managed using the darcs source control system ( http://www.darcs.net/ ). A public darcs archive is here: http://cgiapp.erlbaum.net/darcs_hive/ht\-pluggable/ .SH AUTHORS .IX Header "AUTHORS" Mark Stosberg, ; Rhesa Rozendaal, .SH "Copyright & License" .IX Header "Copyright & License" .Vb 2 \& Parts copyright 2006 Mark Stosberg \& Parts copyright 2006 Rhesa Rozendaal .Ve .PP This program is free software; you can redistribute it and/or modify it under the same terms as perl itself.