From aa040dab9e4518a97781f7f41999bbf99231c6fc Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 21 Dec 2016 12:53:07 -0300 Subject: [PATCH] Bug 17792: Introduce Koha::Patron::Attribute(s) This patch introduces stub Koha::Object(s) for handling patron attributes. Edit: amended the POD to fix C&p mistake Signed-off-by: Nick Clemens --- Koha/Patron/Attribute.pm | 40 ++++++++++++++++++++++++++++++++++++++++ Koha/Patron/Attributes.pm | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100644 Koha/Patron/Attribute.pm create mode 100644 Koha/Patron/Attributes.pm diff --git a/Koha/Patron/Attribute.pm b/Koha/Patron/Attribute.pm new file mode 100644 index 0000000..8bd43d2 --- /dev/null +++ b/Koha/Patron/Attribute.pm @@ -0,0 +1,40 @@ +package Koha::Patron::Attribute; + +# 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 base qw(Koha::Object); + +=head1 NAME + +Koha::Patron::Attribute - Koha Patron Attribute Object class + +=head1 API + +=head2 Class Methods + +=cut + +=head3 _type + +=cut + +sub _type { + return 'BorrowerAttribute'; +} + +1; diff --git a/Koha/Patron/Attributes.pm b/Koha/Patron/Attributes.pm new file mode 100644 index 0000000..4264e06 --- /dev/null +++ b/Koha/Patron/Attributes.pm @@ -0,0 +1,46 @@ +package Koha::Patron::Attributes; + +# 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 Koha::Patron::Attribute; + +use base qw(Koha::Objects); + +=head1 NAME + +Koha::Patron::Attributes - Koha Patron Attributes Object set class + +=head1 API + +=head2 Class Methods + +=cut + +=head3 _type + +=cut + +sub _type { + return 'BorrowerAttribute'; +} + +sub object_class { + return 'Koha::Patron::Attribute'; +} + +1; -- 2.1.4