Bug 17792: Introduce Koha::Patron::Attribute(s)
authorTomas Cohen Arazi <tomascohen@theke.io>
Wed, 21 Dec 2016 15:53:07 +0000 (12:53 -0300)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 24 Mar 2017 18:44:02 +0000 (18:44 +0000)
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 <nick@bywatersolutions.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Koha/Patron/Attribute.pm [new file with mode: 0644]
Koha/Patron/Attributes.pm [new file with mode: 0644]

diff --git a/Koha/Patron/Attribute.pm b/Koha/Patron/Attribute.pm
new file mode 100644 (file)
index 0000000..8bd43d2
--- /dev/null
@@ -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 (file)
index 0000000..4264e06
--- /dev/null
@@ -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;