The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Catalyst::View::Embperl - Embperl View Class

SYNOPSIS

    # use the helper (XXX TODO)
    create.pl view Embperl Epl

    # lib/MyApp/View/Epl.pm
    package MyApp::View::Epl;

    use base 'Catalyst::View::Embperl';

    __PACKAGE__->config(
    );

    1;

    # Meanwhile, maybe in an 'end' action
    $c->forward('MyApp::View::Epl');

DESCRIPTION

This is the Embperl view class. Your subclass should inherit from this class.

METHODS

new

The constructor for the Embperl view.

process

Renders the template specified in $c->stash->{template} Template arguments are $c. Output is stored in $c->response->body.

config

This allows your view subclass to pass additional settings to the Embperl config hash.

SEE ALSO

Embperl, Catalyst, Catalyst::Base.

AUTHOR

Christophe Le Bars, clb@2fp.net

COPYRIGHT

This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.