NAME

Catalyst::View::TT - Template View Class

SYNOPSIS

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

use base 'Catalyst::View::TT';

__PACKAGE__->config->{DEBUG} = 'all';

1;

$c->forward('MyApp::View::TT');

DESCRIPTION

This is the Template view class.

OVERLOADED METHODS

process

Renders the template specified in $c->stash->{template} or $c->request->match to $c->response->output.

config

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

SEE ALSO

Catalyst.

AUTHOR

Sebastian Riedel, sri@cpan.org Marcus Ramberg

COPYRIGHT

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