<<

NAME

Koha::List::Patron - Managment of lists of patrons

FUNCTIONS

GetPatronLists

    my @lists = GetPatronLists( $params );

    Returns an array of lists created by the the given user
    or the logged in user if none is passed in.

DelPatronList

    DelPatronList( { patron_list_id => $list_id [, owner => $owner ] } );

AddPatronList

    AddPatronList( { name => $name [, owner => $owner ] } );

ModPatronList

    ModPatronList( { patron_list_id => $id, name => $name [, owner => $owner ] } );

AddPatronsToList

    AddPatronsToList({ list => $list, cardnumbers => \@cardnumbers });

DelPatronsFromList

    DelPatronsFromList({ list => $list, patron_list_patrons => \@patron_list_patron_ids });

AUTHOR

Kyle M Hall, <kyle@bywatersolutions.com>

<<