The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Template::Plugin - Base class for plugin objects.

SYNOPSIS

    package MyOrg::Template::MyPlugin;
    use base qw( Template::Plugin );

    sub new {
        my ($class, $context, @params) = @_;
        bless {
            ...whatever...
        }, $class;
    }

    sub method1 { }
    sub method1 { }

DESCRIPTION

The Template::Plugin module defines a base class from which other plugin modules can be derived.

AUTHOR

Andy Wardley <cre.canon.co.uk>

REVISION

$Revision: 1.8 $

COPYRIGHT

Copyright (C) 1996-1999 Andy Wardley. All Rights Reserved. Copyright (C) 1998-1999 Canon Research Centre Europe Ltd.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

Template