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