| Catalyst-View-Embperl documentation | view source | Contained in the Catalyst-View-Embperl distribution. |
Catalyst::View::Embperl::Object - Embperl::Object View Class
# use the helper XXX TODO
create.pl view Embperl::Object Epo
# lib/MyApp/View/Epo.pm
package MyApp::View::Epo;
use base 'Catalyst::View::Embperl::Object';
__PACKAGE__->config(
);
1;
# Meanwhile, maybe in an 'end' action
$c->forward('MyApp::View::Epo');
This is the Embperl::Object view class. Your subclass should inherit from this
class.
The constructor for the Embperl::Object view.
Renders the template specified in $c->stash->{template}
Template arguments are $c. Output is stored in $c->response->body.
This allows your view subclass to pass additional settings to the Embperl config hash.
Christophe Le Bars, clb@2fp.net
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
| Catalyst-View-Embperl documentation | view source | Contained in the Catalyst-View-Embperl distribution. |