| Catalyst-View-Text-Template documentation | Contained in the Catalyst-View-Text-Template distribution. |
Catalyst::Helper::View::Text::Template - Helper for Text::Template Views
script/create.pl view NameOfMyView Text::Template
Helper for Text::Template Views.
Catalyst::Manual, Catalyst::Test, Catalyst::Request, Catalyst::Response, Catalyst::Helper, Catalyst::View::Text::Template
Dean Hamstead, dean@fragfest.com.au
This library is free software. You can redistribute it and/or modify it under the same terms as perl itself.
[% class %] - Catalyst Text::Template View
See [% app %]
Catalyst Text::Template View.
[% author %]
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
| Catalyst-View-Text-Template documentation | Contained in the Catalyst-View-Text-Template distribution. |
use strict; package Catalyst::Helper::View::Text::Template;
sub mk_compclass { my ($self, $helper) = @_; my $file = $helper->{file}; $helper->render_file('compclass', $file); }
1; __DATA__ __compclass__ package [% class %]; use strict; use base 'Catalyst::View::Text::Template'; __PACKAGE__->config(TEMPLATE_EXTENSION => '.tmpl');
1;