Koha::AdditionalContent - Koha Additional content object class
$additional_content->author;
Return the Koha::Patron object for the patron who authored this additional content
my $is_expired = $additional_content->is_expired;
Returns 1 if the additional content is expired or 0;
my $library = $additional_content->library;
Returns Koha::Library object or undef
my $translated_contents = $additional_content->translated_contents; $additional_content->translated_contents(\@contents)
my $default_content = $additional_content->default_localization;
Return the default content.
my $translated_content = $additional_content->translated_content($lang);
Return the translated content for a given language. The default is returned if none exist.
This method returns the list of publicly readable database fields for both API and UI output purposes
This method returns the mapping for representing a Koha::AdditionalContent object on the API.
Kyle M Hall <kyle@bywatersolutions.com>