| Catalyst-View-TT-Alloy documentation | Contained in the Catalyst-View-TT-Alloy distribution. |
Catalyst::Helper::View::TT::Alloy - Helper for Template::Alloy Views
script/create.pl view TT::Alloy TT::Alloy
Helper for Template::Alloy Views.
Carl Franks, cfranks@cpan.org
Based on the code of Catalyst::Helper::TT::Alloy, by
Sebastian Riedel, sri@oook.de
Marcus Ramberg, mramberg@cpan.org
This library is free software . You can redistribute it and/or modify it under the same terms as perl itself.
[% class %] - TT::Alloy View for [% app %]
TT::Alloy View for [% app %].
[% author %]
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
| Catalyst-View-TT-Alloy documentation | Contained in the Catalyst-View-TT-Alloy distribution. |
package Catalyst::Helper::View::TT::Alloy; use strict;
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::TT::Alloy'; 1; __END__