Bugzilla – Attachment 58414 Details for
Bug 17792
Introduce Koha::Patron::Attribute(s)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17792: Introduce Koha::Patron::Attribute(s)
Bug-17792-Introduce-KohaPatronAttributes.patch (text/plain), 3.05 KB, created by
Tomás Cohen Arazi (tcohen)
on 2016-12-23 13:29:54 UTC
(
hide
)
Description:
Bug 17792: Introduce Koha::Patron::Attribute(s)
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2016-12-23 13:29:54 UTC
Size:
3.05 KB
patch
obsolete
>From b252cbaf56538fa096ba1bb5579d11d2cb063b79 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Wed, 21 Dec 2016 12:53:07 -0300 >Subject: [PATCH] Bug 17792: Introduce Koha::Patron::Attribute(s) > >This patch introduces stub Koha::Object(s) for handling patron attributes. > >Edit: amended the POD to fix C&p mistake >--- > Koha/Patron/Attribute.pm | 40 ++++++++++++++++++++++++++++++++++++++++ > Koha/Patron/Attributes.pm | 46 ++++++++++++++++++++++++++++++++++++++++++++++ > 2 files changed, 86 insertions(+) > create mode 100644 Koha/Patron/Attribute.pm > create mode 100644 Koha/Patron/Attributes.pm > >diff --git a/Koha/Patron/Attribute.pm b/Koha/Patron/Attribute.pm >new file mode 100644 >index 0000000000..8bd43d2dfb >--- /dev/null >+++ b/Koha/Patron/Attribute.pm >@@ -0,0 +1,40 @@ >+package Koha::Patron::Attribute; >+ >+# 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::Patron::Attribute - Koha Patron Attribute Object class >+ >+=head1 API >+ >+=head2 Class Methods >+ >+=cut >+ >+=head3 _type >+ >+=cut >+ >+sub _type { >+ return 'BorrowerAttribute'; >+} >+ >+1; >diff --git a/Koha/Patron/Attributes.pm b/Koha/Patron/Attributes.pm >new file mode 100644 >index 0000000000..4264e06d7b >--- /dev/null >+++ b/Koha/Patron/Attributes.pm >@@ -0,0 +1,46 @@ >+package Koha::Patron::Attributes; >+ >+# 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::Patron::Attribute; >+ >+use base qw(Koha::Objects); >+ >+=head1 NAME >+ >+Koha::Patron::Attributes - Koha Patron Attributes Object set class >+ >+=head1 API >+ >+=head2 Class Methods >+ >+=cut >+ >+=head3 _type >+ >+=cut >+ >+sub _type { >+ return 'BorrowerAttribute'; >+} >+ >+sub object_class { >+ return 'Koha::Patron::Attribute'; >+} >+ >+1; >-- >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 17792
:
58350
|
58414
|
58421
|
59692
|
59693
|
61553
|
61554