CGI::Ex::Recipes::Default - The default step!


CGI-Ex-Recipes documentation Contained in the CGI-Ex-Recipes distribution.

Index


Code Index:

NAME

Top

CGI::Ex::Recipes::Default - The default step!

SYNOPSIS

Top

    http://localhost:8080/recipes/index.pl




METHODS

Top

This step does not implement any method except skip which returns 0.

AUTHOR

Top

Красимир Беров, <k.berov at gmail.com>

ACKNOWLEDGEMENTS

Top

Thanks to all good people on the planet.

COPYRIGHT & LICENSE

Top


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__