Bug 23727: Add Koha Object(s) related to course reserves
authorKyle M Hall <kyle@bywatersolutions.com>
Fri, 14 Feb 2020 13:57:05 +0000 (08:57 -0500)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Fri, 17 Apr 2020 12:45:51 +0000 (13:45 +0100)
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Koha/Course.pm [new file with mode: 0644]
Koha/Course/Instructor.pm [new file with mode: 0644]
Koha/Course/Instructors.pm [new file with mode: 0644]
Koha/Course/Item.pm [new file with mode: 0644]
Koha/Course/Items.pm [new file with mode: 0644]
Koha/Course/Reserve.pm [new file with mode: 0644]
Koha/Course/Reserves.pm [new file with mode: 0644]
Koha/Courses.pm [new file with mode: 0644]

diff --git a/Koha/Course.pm b/Koha/Course.pm
new file mode 100644 (file)
index 0000000..0ce658b
--- /dev/null
@@ -0,0 +1,42 @@
+package Koha::Course;
+
+# 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 base qw(Koha::Object);
+
+=head1 NAME
+
+Koha::Course - Koha Course Object class
+
+=head1 API
+
+=head2 Internal methods
+
+=cut
+
+=head3 _type
+
+=cut
+
+sub _type {
+    return 'Course';
+}
+
+1;
diff --git a/Koha/Course/Instructor.pm b/Koha/Course/Instructor.pm
new file mode 100644 (file)
index 0000000..62385d0
--- /dev/null
@@ -0,0 +1,42 @@
+package Koha::Course::Instructor;
+
+# 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 base qw(Koha::Object);
+
+=head1 NAME
+
+Koha::Course::Instructor - Koha Course Instructor Object class
+
+=head1 API
+
+=head2 Internal methods
+
+=cut
+
+=head3 _type
+
+=cut
+
+sub _type {
+    return 'CourseInstructor';
+}
+
+1;
diff --git a/Koha/Course/Instructors.pm b/Koha/Course/Instructors.pm
new file mode 100644 (file)
index 0000000..418ec4f
--- /dev/null
@@ -0,0 +1,52 @@
+package Koha::Course::Instructors;
+
+# 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::Course;
+
+use base qw(Koha::Objects);
+
+=head1 NAME
+
+Koha::Course::Instructors - Koha Course::Instructors Object set class
+
+=head1 API
+
+=head2 Internal methods
+
+=cut
+
+=head3 _type
+
+=cut
+
+sub _type {
+    return 'CourseInstructor';
+}
+
+=head3 object_class
+
+=cut
+
+sub object_class {
+    return 'Koha::Course::Instructor';
+}
+
+1;
diff --git a/Koha/Course/Item.pm b/Koha/Course/Item.pm
new file mode 100644 (file)
index 0000000..7f9cd91
--- /dev/null
@@ -0,0 +1,42 @@
+package Koha::Course::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 Carp;
+
+use base qw(Koha::Object);
+
+=head1 NAME
+
+Koha::Course::Item - Koha Course Item Object class
+
+=head1 API
+
+=head2 Internal methods
+
+=cut
+
+=head3 _type
+
+=cut
+
+sub _type {
+    return 'CourseItem';
+}
+
+1;
diff --git a/Koha/Course/Items.pm b/Koha/Course/Items.pm
new file mode 100644 (file)
index 0000000..efd0608
--- /dev/null
@@ -0,0 +1,52 @@
+package Koha::Course::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 Carp;
+
+use Koha::Course;
+
+use base qw(Koha::Objects);
+
+=head1 NAME
+
+Koha::Course::Items - Koha Course::Items Object set class
+
+=head1 API
+
+=head2 Internal methods
+
+=cut
+
+=head3 _type
+
+=cut
+
+sub _type {
+    return 'CourseItem';
+}
+
+=head3 object_class
+
+=cut
+
+sub object_class {
+    return 'Koha::Course::Item';
+}
+
+1;
diff --git a/Koha/Course/Reserve.pm b/Koha/Course/Reserve.pm
new file mode 100644 (file)
index 0000000..ff2e071
--- /dev/null
@@ -0,0 +1,42 @@
+package Koha::Course::Reserve;
+
+# 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 base qw(Koha::Object);
+
+=head1 NAME
+
+Koha::Course::Reserve - Koha Course Reserve Object class
+
+=head1 API
+
+=head2 Internal methods
+
+=cut
+
+=head3 _type
+
+=cut
+
+sub _type {
+    return 'CourseReserve';
+}
+
+1;
diff --git a/Koha/Course/Reserves.pm b/Koha/Course/Reserves.pm
new file mode 100644 (file)
index 0000000..c23a7a9
--- /dev/null
@@ -0,0 +1,52 @@
+package Koha::Course::Reserves;
+
+# 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::Course;
+
+use base qw(Koha::Objects);
+
+=head1 NAME
+
+Koha::Course::Reserves - Koha Course::Reserves Object set class
+
+=head1 API
+
+=head2 Internal methods
+
+=cut
+
+=head3 _type
+
+=cut
+
+sub _type {
+    return 'CourseReserve';
+}
+
+=head3 object_class
+
+=cut
+
+sub object_class {
+    return 'Koha::Course::Reserve';
+}
+
+1;
diff --git a/Koha/Courses.pm b/Koha/Courses.pm
new file mode 100644 (file)
index 0000000..f0fb3ec
--- /dev/null
@@ -0,0 +1,52 @@
+package Koha::Courses;
+
+# 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::Course;
+
+use base qw(Koha::Objects);
+
+=head1 NAME
+
+Koha::Courses - Koha Courses Object set class
+
+=head1 API
+
+=head2 Internal methods
+
+=cut
+
+=head3 _type
+
+=cut
+
+sub _type {
+    return 'Course';
+}
+
+=head3 object_class
+
+=cut
+
+sub object_class {
+    return 'Koha::Course';
+}
+
+1;