<<

NAME

Koha::AuthorisedValue - Koha Authorised value Object class

API

Class methods

store

AuthorisedValue specific store to ensure relevant caches are flushed on change

delete

AuthorisedValue specific delete to clear relevant caches on delete.

opac_description

my $description = $av->opac_description();

to_api_mapping

This method returns the mapping for representing a Koha::AuthorisedValue object on the API.

is_integer_only

This helper method tells you if the category for this value allows numbers only.

to_api

    my $json = $av->to_api;

Overloaded method that returns a JSON representation of the Koha::AuthorisedValue object, suitable for API output.

Internal methods

_check_is_integer_only

    Raise an exception if the category only allows integer values and the value is not.
    Otherwise returns true.

_type

_library_limits

AUTHOR

Kyle M Hall <kyle@bywatersolutions.com>

<<