| Catalyst-View-RRDGraph documentation | Contained in the Catalyst-View-RRDGraph distribution. |
Catalyst::Helper::View::RRDGraph - Helper for RRDGraph Views
script/create.pl view RRDGraph RRDGraph
Helper for RRDGraph Views.
Jose Luis Martinez Torres, jlmartinez@capside.com
This helper was based, to not say ripped off of Catalyst::View::TT
This library is free software . You can redistribute it and/or modify it under the same terms as perl itself.
[% class %] - RRDGraph View for [% app %]
RRDGraph 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-RRDGraph documentation | Contained in the Catalyst-View-RRDGraph distribution. |
package Catalyst::Helper::View::RRDGraph; use strict; use warnings;
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::RRDGraph'; __PACKAGE__->config();
1;