Egg::View::TT - View for TemplateToolKit.


Egg-View-TT documentation  | view source Contained in the Egg-View-TT distribution.

Index


NAME

Top

Egg::View::TT - View for TemplateToolKit.

SYNOPSIS

Top

  __PACKAGE__->egg_startup(
   ...
   .....
   VIEW=> [
    [ 'TT' => {
     INCLUDE_PATH=> ['/path/to/root'],
      } ],
    ],

   );

  # The VIEW object is acquired.
  my $view= $e->view('TT');

  # It outputs it specifying the template.
  my $content= $view->render('hoge.tt', \%option);

DESCRIPTION

Top

It is a view for TemplateToolKit.

http://www.template-toolkit.org/

Please add TT to the setting of VIEW to make it use.

   VIEW=> [
    [ 'TT' => { ... TemplateToolKit option. (HASH) }
    ],

The object that can be used is as follows from the template.

  e ... Object of project.
  s ... $e->stash
  p ... $e->view('TT')->params

HANDLER METHODS

Top

Egg::View has been succeeded to.

new

Constructor.

Egg::View::Template::GlobalParam is set up.

  my $view= $e->view('TT');

render ([TEMPLATE_STR], [OPTION])

The result of evaluating the template of TEMPLATE_STR with TemplateToolKit is returned by the SCALAR reference.

OPTION is an option to pass to TemplateToolKit. OPTION overwrites a set value of the configuration.

  my $body= $view->render( 'foo.tt', 
    ..........
    ....
    );

output ([TEMPLATE], [OPTION])

The result of the render method is set in $e->response->body.

When TEMPLATE is omitted, it acquires it from $view->template.

OPTION is passed to the render method as it is.

  $view->output;

SEE ALSO

Top

Egg::Release, Egg::View, Egg::View::Template::GlobalParam, Template, http://www.template-toolkit.org/,

AUTHOR

Top

Masatoshi Mizuno <lushe&64;cpan.org>

COPYRIGHT AND LICENSE

Top


Egg-View-TT documentation  | view source Contained in the Egg-View-TT distribution.