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

NAME

Konstrukt::TagHandler::Plugin - Plugin handler of the Konstrukt framework

SYNOPSIS

        #use inside the parser
        use Konstrukt::TagHandler::Plugin;
        my $handler = Konstrukt::TagHandler::Plugin->new();
        my $result;
        $result = $handler->prepare($tag_node);
        $result = $handler->execute($tag_node);

DESCRIPTION

Handler for <& ... &>-tags (plugins).

METHODS

init

Initialization of this class

prepare

Implementation of "prepare" in Konstrukt::TagHandler.

execute

Implementation of "execute" in Konstrukt::TagHandler.

prepare_again

Implementation of "prepare_again" in Konstrukt::TagHandler.

execute_again

Implementation of "execute_again" in Konstrukt::TagHandler.

executionstage

Implementation of "executionstage" in Konstrukt::TagHandler.

load_plugin

Loads and initializes a specified plugin.

Returns an object of this plugin if it could be loaded, undef otherwise.

Parameters:

  • $plugin - Name of the plugin to load.

AUTHOR

Copyright 2006 Thomas Wittek (mail at gedankenkonstrukt dot de). All rights reserved.

This document is free software. It is distributed under the same terms as Perl itself.

SEE ALSO

Konstrukt::Plugin, Konstrukt