MetaStore::Component - Abstract class for component


MetaStore documentation Contained in the MetaStore distribution.

Index


Code Index:

NAME

Top

MetaStore::Component - Abstract class for component

SYNOPSIS

Top

DESCRIPTION

Top

Abstract class for component

METHODS

Top

SEE ALSO

Top

MetaStore, WebDAO::Component, README

AUTHOR

Top

Zahatski Aliaksandr, <zag@cpan.org>

COPYRIGHT AND LICENSE

Top


MetaStore documentation Contained in the MetaStore distribution.
package MetaStore::Component;

use strict;
use warnings;
use Data::Dumper;
use Template;
use WebDAO::Component;
use base qw/ WebDAO::Component/;
our $VERSION = '0.01';

sub parse_template {
    my $self = shift;
    my ( $template, $predefined ) = @_;
    $predefined->{self} = $self unless exists $predefined->{self};
    return $self->getEngine->parse_template(@_);
}
1;
__END__