@@ -, +, @@ --- Koha/Course.pm | 42 ++++++++++++++++++++++++++++++ Koha/Course/Instructor.pm | 42 ++++++++++++++++++++++++++++++ Koha/Course/Instructors.pm | 52 ++++++++++++++++++++++++++++++++++++++ Koha/Course/Item.pm | 42 ++++++++++++++++++++++++++++++ Koha/Course/Items.pm | 52 ++++++++++++++++++++++++++++++++++++++ Koha/Course/Reserve.pm | 42 ++++++++++++++++++++++++++++++ Koha/Course/Reserves.pm | 52 ++++++++++++++++++++++++++++++++++++++ Koha/Courses.pm | 52 ++++++++++++++++++++++++++++++++++++++ 8 files changed, 376 insertions(+) create mode 100644 Koha/Course.pm create mode 100644 Koha/Course/Instructor.pm create mode 100644 Koha/Course/Instructors.pm create mode 100644 Koha/Course/Item.pm create mode 100644 Koha/Course/Items.pm create mode 100644 Koha/Course/Reserve.pm create mode 100644 Koha/Course/Reserves.pm create mode 100644 Koha/Courses.pm --- a/Koha/Course.pm +++ a/Koha/Course.pm @@ -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; --- a/Koha/Course/Instructor.pm +++ a/Koha/Course/Instructor.pm @@ -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; --- a/Koha/Course/Instructors.pm +++ a/Koha/Course/Instructors.pm @@ -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; --- a/Koha/Course/Item.pm +++ a/Koha/Course/Item.pm @@ -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; --- a/Koha/Course/Items.pm +++ a/Koha/Course/Items.pm @@ -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; --- a/Koha/Course/Reserve.pm +++ a/Koha/Course/Reserve.pm @@ -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; --- a/Koha/Course/Reserves.pm +++ a/Koha/Course/Reserves.pm @@ -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; --- a/Koha/Courses.pm +++ a/Koha/Courses.pm @@ -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; --