.\" -*- 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 "CGI::FormBuilder::Template 3" .TH CGI::FormBuilder::Template 3 2023-07-25 "perl v5.38.0" "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 CGI::FormBuilder::Template \- Template adapters for FormBuilder .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 1 \& # Define a template engine \& \& package CGI::FormBuilder::Template::Whatever; \& use base \*(AqWhatever::Template::Module\*(Aq; \& \& sub new { \& my $self = shift; \& my $class = ref($self) || $self; \& my %opt = @_; \& \& # override some options \& $opt{some_setting} = 0; \& $opt{another_var} = \*(AqSome Value\*(Aq; \& \& # instantiate the template engine \& $opt{engine} = Whatever::Template::Module\->new(%opt); \& \& return bless \e%opt, $class; \& } \& \& sub render { \& my $self = shift; \& my $form = shift; # only arg is form object \& \& # grab any manually\-set template params \& my %tmplvar = $form\->tmpl_param; \& \& # example template manipulation \& my $html = $self\->{engine}\->do_template(%tmplvar); \& \& return $html; # scalar HTML is returned \& } .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" This documentation describes the usage of \fBFormBuilder\fR templates, as well as how to write your own template adapter. .PP The template engines serve as adapters between CPAN template modules and \fBFormBuilder\fR. A template engine is invoked by using the \f(CW\*(C`template\*(C'\fR option to the top-level \f(CWnew()\fR method: .PP .Vb 3 \& my $form = CGI::FormBuilder\->new( \& template => \*(Aqfilename.tmpl\*(Aq \& ); .Ve .PP This example points to a filename that contains an \f(CW\*(C`HTML::Template\*(C'\fR compatible template to use to layout the HTML. You can also specify the \f(CW\*(C`template\*(C'\fR option as a reference to a hash, allowing you to further customize the template processing options, or use other template engines. .PP For example, you could turn on caching in \f(CW\*(C`HTML::Template\*(C'\fR with something like the following: .PP .Vb 7 \& my $form = CGI::FormBuilder\->new( \& fields => \e@fields, \& template => { \& filename => \*(Aqform.tmpl\*(Aq, \& shared_cache => 1 \& } \& ); .Ve .PP As mentioned, specifying a hashref allows you to use an alternate template processing system like the \f(CW\*(C`Template Toolkit\*(C'\fR. A minimal configuration would look like this: .PP .Vb 7 \& my $form = CGI::FormBuilder\->new( \& fields => \e@fields, \& template => { \& type => \*(AqTT2\*(Aq, # use Template Toolkit \& template => \*(Aqform.tmpl\*(Aq, \& }, \& ); .Ve .PP The \f(CW\*(C`type\*(C'\fR option specifies the name of the engine. Currently accepted types are: .PP .Vb 7 \& Builtin \- Included, default rendering if no template specified \& Div \- Render form using
(no tables) \& HTML \- HTML::Template \& Text \- Text::Template \& TT2 \- Template Toolkit \& Fast \- CGI::FastTemplate \& CGI_SSI \- CGI::SSI .Ve .PP In addition to one of these types, you can also specify a complete package name, in which case that module will be autoloaded and its \f(CWnew()\fR and \f(CWrender()\fR routines used. For example: .PP .Vb 7 \& my $form = CGI::FormBuilder\->new( \& fields => \e@fields, \& template => { \& type => \*(AqMy::Template::Module\*(Aq, \& template => \*(Aqform.tmpl\*(Aq, \& }, \& ); .Ve .PP All other options besides \f(CW\*(C`type\*(C'\fR are passed to the constructor for that templating system verbatim, so you'll need to consult those docs to see what all the different options do. Skip down to "SEE ALSO". .SH "SUBCLASSING TEMPLATE ADAPTERS" .IX Header "SUBCLASSING TEMPLATE ADAPTERS" In addition to the above included template engines, it is also possible to write your own rendering module. If you come up with something cool, please let the mailing list know! .PP To do so, you need to write a module which has a sub called \f(CWrender()\fR. This sub will be called by \fBFormBuilder\fR when \f(CW\*(C`$form\->render\*(C'\fR is called. This sub can do basically whatever it wants, the only thing it has to do is return a scalar string which is the HTML to print out. .PP This is actually not hard. Here's a simple adapter which would manipulate an \f(CW\*(C`HTML::Template\*(C'\fR style template: .PP .Vb 2 \& # This file is My/HTML/Template.pm \& package My::HTML::Template; \& \& use CGI::FormBuilder::Template::HTML; \& use base \*(AqCGI::FormBuilder::Template::HTML\*(Aq; \& \& sub render { \& my $self = shift; # class object \& my $form = shift; # $form as only argument \& \& # the template object (engine) lives here \& my $tmpl = $self\->engine; \& \& # setup vars for our fields (objects) \& for ($form\->field) { \& $tmpl\->param($_ => $_\->value); \& } \& \& # render output \& my $html = $tmpl\->output; \& \& # return scalar; \& return $html; \& } \& 1; # close module .Ve .PP Then in \fBFormBuilder\fR: .PP .Vb 2 \& use CGI::FormBuilder; \& use My::HTML::Template; # your module \& \& my $tmpl = My::HTML::Template\->new; \& \& my $form = CGI::FormBuilder\->new( \& fields => [qw(name email)], \& header => 1, \& template => $tmpl # pass template object \& ); \& \& # set our company from an extra CGI param \& my $co = $form\->cgi_param(\*(Aqcompany\*(Aq); \& $tmpl\->engine\->param(company => $co); \& \& # and render like normal \& print $form\->render; .Ve .PP That's it! For more details, the best thing to do is look through the guts of one of the existing template engines and go from there. .SH "SEE ALSO" .IX Header "SEE ALSO" CGI::FormBuilder, CGI::FormBuilder::Template::HTML, CGI::FormBuilder::Template::Text, CGI::FormBuilder::Template::TT2, CGI::FormBuilder::Template::Fast, CGI::FormBuilder::Template::CGI_SSI .SH REVISION .IX Header "REVISION" \&\f(CW$Id:\fR Template.pm 97 2007\-02\-06 17:10:39Z nwiger $ .SH AUTHOR .IX Header "AUTHOR" Copyright (c) Nate Wiger . All Rights Reserved. .PP This module is free software; you may copy this under the terms of the GNU General Public License, or the Artistic License, copies of which should have accompanied your Perl kit.