| Catalyst-View-PHP documentation | Contained in the Catalyst-View-PHP distribution. |
Catalyst::Helper::View::PHP - Helper for PHP Views
script/create.pl view PHP PHP
Helper for PHP Views.
Catalyst::Manual, Catalyst::Test, Catalyst::Request, Catalyst::Response, Catalyst::Helper
Rusty Conover, rconover@infogears.com
This library is free software . You can redistribute it and/or modify it under the same terms as perl itself.
[% class %] - PHP View Component
See [% app %]
PHP View Component.
[% author %]
This library is free software . You can redistribute it and/or modify it under the same terms as perl itself.
| Catalyst-View-PHP documentation | Contained in the Catalyst-View-PHP distribution. |
package Catalyst::Helper::View::PHP; 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::PHP';
1;