Bugzilla – Attachment 114496 Details for
Bug 8976
Default sequence of subfields in cataloguing and item editor
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 8976: Add Koha::AuthSubfieldStructure[s]
Bug-8976-Add-KohaAuthSubfieldStructures.patch (text/plain), 3.49 KB, created by
Michal Denar
on 2020-12-17 20:31:48 UTC
(
hide
)
Description:
Bug 8976: Add Koha::AuthSubfieldStructure[s]
Filename:
MIME Type:
Creator:
Michal Denar
Created:
2020-12-17 20:31:48 UTC
Size:
3.49 KB
patch
obsolete
>From d4560f21e21643274e758fc4d990ef07eb3adfef Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 9 Dec 2020 18:56:06 +0100 >Subject: [PATCH] Bug 8976: Add Koha::AuthSubfieldStructure[s] > >Sponsored-by: Orex Digital > >Signed-off-by: Michal Denar <black23@gmail.com> >--- > 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 > >diff --git a/Koha/AuthSubfieldStructure.pm b/Koha/AuthSubfieldStructure.pm >new file mode 100644 >index 0000000000..93f90a0c9c >--- /dev/null >+++ b/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 <http://www.gnu.org/licenses>. >+ >+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; >diff --git a/Koha/AuthSubfieldStructures.pm b/Koha/AuthSubfieldStructures.pm >new file mode 100644 >index 0000000000..be6f3c4657 >--- /dev/null >+++ b/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 <http://www.gnu.org/licenses>. >+ >+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; >diff --git a/Koha/MarcSubfieldStructure.pm b/Koha/MarcSubfieldStructure.pm >index a5224fba47..a3902f86fe 100644 >--- a/Koha/MarcSubfieldStructure.pm >+++ b/Koha/MarcSubfieldStructure.pm >@@ -33,7 +33,9 @@ Koha::MarcSubfieldStructure - Koha MarcSubfieldStructure Object class > > =cut > >-=head3 type >+=head2 Internal methods >+ >+=head3 _type > > =cut > >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 8976
:
114345
|
114346
|
114347
|
114348
|
114349
|
114350
|
114351
|
114352
|
114353
|
114354
|
114355
|
114492
|
114493
|
114494
|
114495
|
114496
|
114497
|
114498
|
117147
|
117148
|
117149
|
117150
|
117151
|
117152
|
117153
|
117268
|
117269
|
117270
|
117271
|
117272
|
117273
|
117274
|
117275
|
117276
|
117477
|
117478