| Catalyst-View-Petal documentation | Contained in the Catalyst-View-Petal distribution. |
Catalyst::Helper::View::Petal - Helper for Petal Views
script/create.pl view Petal Petal
Helper for Petal Views.
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 %] - Petal View Component
Very simple to use
Very nice component.
Clever guy
This library is free software . You can redistribute it and/or modify it under the same terms as perl itself.
| Catalyst-View-Petal documentation | Contained in the Catalyst-View-Petal distribution. |
package Catalyst::Helper::View::Petal; 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::Petal';
1;