Koha::Authority - class to encapsulate authority records in Koha
Object-oriented class that encapsulates authority records in Koha.
Authority data.
my $auth = Koha::Authority->new($record);
Create a new Koha::Authority object based on the provided record.
my $auth = Koha::Authority->get_from_authid($authid);
Create the Koha::Authority object associated with the provided authid. Note that this routine currently retrieves a MARC record because authorities in Koha are MARC records by definition. This is an unfortunate but unavoidable fact.
my $auth = Koha::Authority->get_from_authid($authid);
Create the Koha::Authority object associated with the provided authid.