| Catalyst-View-Mason documentation | Contained in the Catalyst-View-Mason distribution. |
Catalyst::Helper::View::Mason - Helper for Mason Views
script/create.pl view Mason Mason
Helper for Mason Views.
Florian Ragwitz <rafl@debian.org>
Originally written by:
Andres Kievsky
Sebastian Riedel, sri@oook.de
This library is free software . You can redistribute it and/or modify it under the same terms as perl itself.
[% class %] - Mason View Component for [% app %]
Mason View Component for [% app %]
[% app %], HTML::Mason
[% author %]
This library is free software . You can redistribute it and/or modify it under the same terms as perl itself.
| Catalyst-View-Mason documentation | Contained in the Catalyst-View-Mason distribution. |
package Catalyst::Helper::View::Mason; use strict; use warnings; our $VERSION = '0.13';
sub mk_compclass { my ($self, $helper) = @_; my $file = $helper->{file}; $helper->render_file('compclass', $file); }
1; __DATA__ __compclass__ package [% class %]; use strict; use warnings; use parent 'Catalyst::View::Mason'; __PACKAGE__->config(use_match => 0);
1;