| CGI-Ex-Recipes documentation | Contained in the CGI-Ex-Recipes distribution. |
CGI::Ex::Recipes::Default - The default step!
http://localhost:8080/recipes/index.pl
This step does not implement any method except skip which returns 0.
Красимир Беров, <k.berov at gmail.com>
Thanks to all good people on the planet.
Copyright 2007 Красимир Беров, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| CGI-Ex-Recipes documentation | Contained in the CGI-Ex-Recipes distribution. |
package CGI::Ex::Recipes::Default; use warnings; use strict; use base qw(CGI::Ex::Recipes); use utf8; our $VERSION = '0.03'; sub info_complete { 0 } sub skip { 0 } # now the list of items is produced by CGI::Ex::Recipes::Template::Menu 1;# End of CGI::Ex::Recipes::Default __END__