CGI::Ex::Recipes::View - reads and displays a recipe!


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

Index


Code Index:

NAME

Top

CGI::Ex::Recipes::View - reads and displays a recipe!

VERSION

Top

Version 0.03

SYNOPSIS

Top

    no synopsis

    ...

METHOSDS

Top

hash_common

AUTHOR

Top

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

COPYRIGHT & LICENSE

Top


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

package CGI::Ex::Recipes::View;
use utf8;
use warnings;
use strict;
use base qw(CGI::Ex::Recipes);
use CGI::Ex::Dump qw(debug dex_warn ctrace dex_trace);
our $VERSION = '0.3';

sub hash_common { 
    my $self = shift;
    require CGI::Ex::Recipes::Edit;
    #dex_trace; debug $self;
    $self->CGI::Ex::Recipes::Edit::hash_common(@_);
}

1; # End of CGI::Ex::Recipes::View