| MetaStore documentation | Contained in the MetaStore distribution. |
MetaStore::Component - Abstract class for component
Abstract class for component
MetaStore, WebDAO::Component, README
Zahatski Aliaksandr, <zag@cpan.org>
Copyright (C) 2006 by Zahatski Aliaksandr
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.
| 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__