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

NAME

Xacobeo::Plugin - Parent class for all plugins.

SYNOPSIS

        use strict;
        use warnings;
        
        use base 'Xacobeo::Plugin';
        
        sub init {
                my ($self, $xacobeo) = @_;
                
                my ($window) = $xacobeo->get_windows();
                $window->statusbar->display("Plugin Loaded!");
        }
        
        # Finish the plugin with loaded
        __PACKAGE__->load();

DESCRIPTION

Parent class for all plugins. It provides a common framework for all plugins.

METHODS

The package defines the following methods:

AUTHORS

Emmanuel Rodriguez <potyl@cpan.org>.

COPYRIGHT AND LICENSE

Copyright (C) 2008,2009 by Emmanuel Rodriguez.

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.