NAME
App::ZofCMS::Plugin::AutoDump - debugging plugin to quickly dump out query parameters and ZofCMS Template hashref
SYNOPSIS
plugins => [
{ Sub => 200 },
{ AutoDump => 300 },
],
plug_sub => sub { ## this is optional, just for an example
my ( $t, $q ) = @_;
$t->{foo} = 'bar';
$q->{foo} = 'bar';
},
DESCRIPTION
The module is a plugin for App::ZofCMS that provides means to quickly use Data::Dumper to dump query parameters hashref as well as ZofCMS Template hashref.
This documentation assumes you've read App::ZofCMS, App::ZofCMS::Config and App::ZofCMS::Template
HOW TO USE
plugins => [
{ Sub => 200 },
{ AutoDump => 300 },
],
This plugin requires no configuration. To run it simply include it in the list of plugins to execute with the priority set at the right point of execution line.
HOW IT WORKS
Plugin assumes that you're using CGI::Carp (should be on by default if you've used zofcms_helper
script to generate site's skeleton). When plugin is run it calls die Dumper [ $q, $t ]
where $q
is query parameters hashref and $t
is ZofCMS Template hashef... therefore, in the browser's output the first hashef is the query.
REPOSITORY
Fork this module on GitHub: https://github.com/zoffixznet/App-ZofCMS
BUGS
To report bugs or request features, please use https://github.com/zoffixznet/App-ZofCMS/issues
If you can't access GitHub, you can email your request to bug-App-ZofCMS at rt.cpan.org
AUTHOR
Zoffix Znet <zoffix at cpan.org> (http://zoffix.com/, http://haslayout.net/)
LICENSE
You can use and distribute this module under the same terms as Perl itself. See the LICENSE
file included in this distribution for complete details.