| Catalyst-View-BK documentation | Contained in the Catalyst-View-BK distribution. |
Catalyst::Helper::View::BK - Helper for BK Views
script/create.pl view BK BK
Helper for BK Views.
Catalyst::Manual, Catalyst::Test, Catalyst::Request, Catalyst::Response, Catalyst::Helper
Jeremy Wall, jeremy@marzhillstudios.com
This library is free software . You can redistribute it and/or modify it under the same terms as perl itself.
[% class %] - BK View for [% app %]
BK 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-BK documentation | Contained in the Catalyst-View-BK distribution. |
package Catalyst::Helper::View::BK; use strict;
sub mk_compclass { my ($self, $helper ) = @_; my $classfile = $helper->{file}; $helper->render_file('subclass', $classfile); }
1; __DATA__ __subclass__ package [% class %]; use strict; use base 'Catalyst::View::BK';
1;