ManaTools::Shared::Action

Section: User Contributed Perl Documentation (3)
Updated: 2017-07-06
Page Index
 

NAME

    ManaTools::Shared::Action - an Action helper class

 

SYNOPSIS

    use ManaTools::Shared::Action;

    my $action = ManaTools::Shared::Action->new(name => 'addPartition', label => 'Add a partition', item => $foo, action => sub {
        my $self = shift;
        my $item = $self->item();
        my @args = @_;
        ...
        return 'return value';
    }, valid => sub {
        my $self = shift;
        my $item = $self->item();
        ...
        return 0;
    });
    my $res = $action->act(@_);
    $action->is_valid();

 

DESCRIPTION

    This helper class is used to abstract an action

 

SUPPORT

    You can find documentation for this plugin with the perldoc command:

    perldoc ManaTools::Shared::Action

 

AUTHOR

    Maarten Vanraes <alien@rmail.be>

 

COPYRIGHT and LICENSE

Copyright (c) 2015 Maarten Vanraes <alien@rmail.be>

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2, as published by the Free Software Foundation.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  

METHODS


 

Index

NAME
SYNOPSIS
DESCRIPTION
SUPPORT
AUTHOR
COPYRIGHT and LICENSE
METHODS