From 6f717fca9c8fddf5d26ea8b7bb8817beee3bfe5d Mon Sep 17 00:00:00 2001
From: Kyle M Hall <kyle@bywatersolutions.com>
Date: Thu, 5 Dec 2019 09:32:00 -0500
Subject: [PATCH] Bug 24857: Add Koha Object(s)

Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>
---
 Koha/Biblio/Volume.pm       | 50 +++++++++++++++++++++++++++++++++++++++++++++
 Koha/Biblio/Volume/Item.pm  | 48 +++++++++++++++++++++++++++++++++++++++++++
 Koha/Biblio/Volume/Items.pm | 50 +++++++++++++++++++++++++++++++++++++++++++++
 Koha/Biblio/Volumes.pm      | 50 +++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 198 insertions(+)
 create mode 100644 Koha/Biblio/Volume.pm
 create mode 100644 Koha/Biblio/Volume/Item.pm
 create mode 100644 Koha/Biblio/Volume/Items.pm
 create mode 100644 Koha/Biblio/Volumes.pm

diff --git a/Koha/Biblio/Volume.pm b/Koha/Biblio/Volume.pm
new file mode 100644
index 0000000000..fa71112a55
--- /dev/null
+++ b/Koha/Biblio/Volume.pm
@@ -0,0 +1,50 @@
+package Koha::Biblio::Volume;
+
+# 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::Volume - Koha Volume Object class
+
+=head1 API
+
+=head2 Class methods
+
+=cut
+
+=head2 Internal methods
+
+=head3 _type
+
+=cut
+
+sub _type {
+    return 'Volume';
+}
+
+=head3 object_class
+
+=cut
+
+sub object_class {
+    return 'Koha::Biblio::Volume';
+}
+
+1;
diff --git a/Koha/Biblio/Volume/Item.pm b/Koha/Biblio/Volume/Item.pm
new file mode 100644
index 0000000000..51c174564c
--- /dev/null
+++ b/Koha/Biblio/Volume/Item.pm
@@ -0,0 +1,48 @@
+package Koha::Biblio::Volume::Item;
+
+# 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::Volume::Item - Koha Volume Item Object class
+
+=head1 API
+
+=head2 Class methods
+
+=head2 Internal methods
+
+=head3 _type
+
+=cut
+
+sub _type {
+    return 'VolumeItem';
+}
+
+=head3 object_class
+
+=cut
+
+sub object_class {
+    return 'Koha::Biblio::Volume::Item';
+}
+
+1;
diff --git a/Koha/Biblio/Volume/Items.pm b/Koha/Biblio/Volume/Items.pm
new file mode 100644
index 0000000000..26adb3d329
--- /dev/null
+++ b/Koha/Biblio/Volume/Items.pm
@@ -0,0 +1,50 @@
+package Koha::Biblio::Volume::Items;
+
+# 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::Biblio::Volume::Item;
+
+use base qw(Koha::Objects);
+
+=head1 NAME
+
+Koha::Biblio::Volume::Items - Koha Volume Items Object set class
+
+=head1 API
+
+=head2 Class methods
+
+=head2 Internal methods
+
+=head3 _type
+
+=cut
+
+sub _type {
+    return 'VolumeItem';
+}
+
+=head3 object_class
+
+=cut
+
+sub object_class {
+    return 'Koha::Biblio::Volume::Item';
+}
+
+1;
diff --git a/Koha/Biblio/Volumes.pm b/Koha/Biblio/Volumes.pm
new file mode 100644
index 0000000000..e22e88fe4c
--- /dev/null
+++ b/Koha/Biblio/Volumes.pm
@@ -0,0 +1,50 @@
+package Koha::Biblio::Volumes;
+
+# 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::Biblio::Volume;
+
+use base qw(Koha::Objects);
+
+=head1 NAME
+
+Koha::Biblio::Volumes - Koha Volume Object set class
+
+=head1 API
+
+=head2 Class methods
+
+=head2 Internal methods
+
+=head3 _type
+
+=cut
+
+sub _type {
+    return 'Volume';
+}
+
+=head3 object_class
+
+=cut
+
+sub object_class {
+    return 'Koha::Biblio::Volume';
+}
+
+1;
-- 
2.11.0