@@ -, +, @@ --- Koha/AuthSubfieldStructure.pm | 46 +++++++++++++++++++++++++++++++++++ Koha/AuthSubfieldStructures.pm | 54 ++++++++++++++++++++++++++++++++++++++++++ Koha/MarcSubfieldStructure.pm | 4 +++- 3 files changed, 103 insertions(+), 1 deletion(-) create mode 100644 Koha/AuthSubfieldStructure.pm create mode 100644 Koha/AuthSubfieldStructures.pm --- a/Koha/AuthSubfieldStructure.pm +++ a/Koha/AuthSubfieldStructure.pm @@ -0,0 +1,46 @@ +package Koha::AuthSubfieldStructure; + +# 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, see . + +use Modern::Perl; + +use Carp; + +use Koha::Database; + +use base qw(Koha::Object); + +=head1 NAME + +Koha::AuthSubfieldStructure - Koha AuthSubfieldStructure Object class + +=head1 API + +=head2 Class methods + +=cut + +=head2 Internal methods + +=head3 _type + +=cut + +sub _type { + return 'AuthSubfieldStructure'; +} + +1; --- a/Koha/AuthSubfieldStructures.pm +++ a/Koha/AuthSubfieldStructures.pm @@ -0,0 +1,54 @@ +package Koha::AuthSubfieldStructures; + +# 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, see . + +use Modern::Perl; + +use Carp; + +use Koha::Database; + +use Koha::AuthSubfieldStructure; + +use base qw(Koha::Objects); + +=head1 NAME + +Koha::AuthSubfieldStructures - Koha AuthSubfieldStructure Object set class + +=head1 API + +=head2 Class Methods + +=cut + +=head3 type + +=cut + +sub _type { + return 'AuthSubfieldStructure'; +} + +=head3 object_class + +=cut + +sub object_class { + return 'Koha::AuthSubfieldStructure'; +} + +1; --- a/Koha/MarcSubfieldStructure.pm +++ a/Koha/MarcSubfieldStructure.pm @@ -33,7 +33,9 @@ Koha::MarcSubfieldStructure - Koha MarcSubfieldStructure Object class =cut -=head3 type +=head2 Internal methods + +=head3 _type =cut --