@@ -, +, @@ --- 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 --- a/Koha/Biblio/Volume.pm +++ a/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; --- a/Koha/Biblio/Volume/Item.pm +++ a/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; --- a/Koha/Biblio/Volume/Items.pm +++ a/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; --- a/Koha/Biblio/Volumes.pm +++ a/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; --