From e125a5244dba4df4ee1dbcbe54b9069ca7d279b8 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 29 Aug 2016 13:56:02 +0100 Subject: [PATCH] Bug 17216: Add Koha::AuthorisedValueCategory|ies classes --- Koha/AuthorisedValueCategories.pm | 50 +++++++++++++++++++++++++++++++++++++++ Koha/AuthorisedValueCategory.pm | 44 ++++++++++++++++++++++++++++++++++ 2 files changed, 94 insertions(+) create mode 100644 Koha/AuthorisedValueCategories.pm create mode 100644 Koha/AuthorisedValueCategory.pm diff --git a/Koha/AuthorisedValueCategories.pm b/Koha/AuthorisedValueCategories.pm new file mode 100644 index 0000000..b756f6a --- /dev/null +++ b/Koha/AuthorisedValueCategories.pm @@ -0,0 +1,50 @@ +package Koha::AuthorisedValueCategories; + +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 3 of the License, or (at your option) any later +# version. +# +# Koha is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +use Modern::Perl; + +use Carp; + +use Koha::Database; + +use Koha::AuthorisedValueCategory; + +use base qw(Koha::Objects); + +=head1 NAME + +Koha::AuthorisedValueCategories - Koha AuthorisedValueCategory Object set class + +=head1 API + +=head2 Class Methods + +=cut + +=head3 type + +=cut + +sub _type { + return 'AuthorisedValueCategory'; +} + +sub object_class { + return 'Koha::AuthorisedValueCategory'; +} + +1; diff --git a/Koha/AuthorisedValueCategory.pm b/Koha/AuthorisedValueCategory.pm new file mode 100644 index 0000000..2146347 --- /dev/null +++ b/Koha/AuthorisedValueCategory.pm @@ -0,0 +1,44 @@ +package Koha::AuthorisedValueCategory; + +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 3 of the License, or (at your option) any later +# version. +# +# Koha is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +use Modern::Perl; + +use Carp; + +use Koha::Database; + +use base qw(Koha::Object); + +=head1 NAME + +Koha::AuthorisedValueCategory - Koha AuthorisedValueCategory Object class + +=head1 API + +=head2 Class Methods + +=cut + +=head3 type + +=cut + +sub _type { + return 'AuthorisedValueCategory'; +} + +1; -- 2.8.1