From a24ec37a4cde6e7966152604924d55da3b8782b6 Mon Sep 17 00:00:00 2001 From: Kyle M Hall 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