Bugzilla – Attachment 60899 Details for
Bug 17361
Add item messages table and rest api endpoints
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17361: Add Koha::Item::Message(s)
Bug-17361-Add-KohaItemMessages.patch (text/plain), 2.90 KB, created by
Tomás Cohen Arazi (tcohen)
on 2017-03-07 19:30:14 UTC
(
hide
)
Description:
Bug 17361: Add Koha::Item::Message(s)
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2017-03-07 19:30:14 UTC
Size:
2.90 KB
patch
obsolete
>From a24ec37a4cde6e7966152604924d55da3b8782b6 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Fri, 3 Mar 2017 14:08:00 +0000 >Subject: [PATCH] Bug 17361: Add Koha::Item::Message(s) > >--- > Koha/Item/Message.pm | 44 ++++++++++++++++++++++++++++++++++++++++++++ > Koha/Item/Messages.pm | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ > 2 files changed, 94 insertions(+) > create mode 100644 Koha/Item/Message.pm > create mode 100644 Koha/Item/Messages.pm > >diff --git a/Koha/Item/Message.pm b/Koha/Item/Message.pm >new file mode 100644 >index 0000000000..2d8642816b >--- /dev/null >+++ b/Koha/Item/Message.pm >@@ -0,0 +1,44 @@ >+package Koha::Item::Message; >+ >+# 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::Database; >+ >+use base qw(Koha::Object); >+ >+=head1 NAME >+ >+Koha::Item::Message - Koha Message Object class >+ >+=head1 API >+ >+=head2 Class Methods >+ >+=cut >+ >+=head3 type >+ >+=cut >+ >+sub _type { >+ return 'ItemMessage'; >+} >+ >+1; >diff --git a/Koha/Item/Messages.pm b/Koha/Item/Messages.pm >new file mode 100644 >index 0000000000..778d1629e7 >--- /dev/null >+++ b/Koha/Item/Messages.pm >@@ -0,0 +1,50 @@ >+package Koha::Item::Messages; >+ >+# 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::Database; >+ >+use Koha::Item::Message; >+ >+use base qw(Koha::Objects); >+ >+=head1 NAME >+ >+Koha::Messages - Koha Message Object set class >+ >+=head1 API >+ >+=head2 Class Methods >+ >+=cut >+ >+=head3 type >+ >+=cut >+ >+sub _type { >+ return 'ItemMessage'; >+} >+ >+sub object_class { >+ return 'Koha::Item::Message'; >+} >+ >+1; >-- >2.12.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 17361
:
60897
|
60898
| 60899 |
60900