<<

NAME

Koha::Plugins::Tab - Simple base to abstract tabs to be generated by plugins

DESCRIPTION

Object-oriented class that represents tabs generated by plugins. Error handling on mandatory fields is handled here.

API

Class methods

new

    my $tab = Koha::Plugins::Tab->new(
        {
            title   => 'A title',
            content => 'Some content'
        }
    );

Returns a Koha::Plugins::Tab object representing a plugin-generated tab.

<<