From 837d7b92903812185619f430cf854b25ed3245d5 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 15 Aug 2024 12:55:18 +0100 Subject: [PATCH] Bug 10190: Remove OverdueRule Koha Objects --- Koha/OverdueRule.pm | 40 ----------------------------------- Koha/OverdueRules.pm | 50 -------------------------------------------- 2 files changed, 90 deletions(-) delete mode 100644 Koha/OverdueRule.pm delete mode 100644 Koha/OverdueRules.pm diff --git a/Koha/OverdueRule.pm b/Koha/OverdueRule.pm deleted file mode 100644 index 16152a5098b..00000000000 --- a/Koha/OverdueRule.pm +++ /dev/null @@ -1,40 +0,0 @@ -package Koha::OverdueRule; - -# Copyright ByWater Solutions 2023 -# -# 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 base qw(Koha::Object); - -=head1 NAME - -Koha::OverdueRule - Koha Overdue rule object class - -=head1 API - -=head2 Class Methods - -=head3 _type - -=cut - -sub _type { - return 'Overduerule'; -} - -1; diff --git a/Koha/OverdueRules.pm b/Koha/OverdueRules.pm deleted file mode 100644 index a958ee031c7..00000000000 --- a/Koha/OverdueRules.pm +++ /dev/null @@ -1,50 +0,0 @@ -package Koha::OverdueRules; - -# Copyright ByWater Solutions 2023 -# -# 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 Koha::OverdueRule; - -use base qw(Koha::Objects); - -=head1 NAME - -Koha::OverdueRules - Koha::OverdueRule Object set class - -=head1 API - -=head2 Class Methods - -=head3 _type - -=cut - -sub _type { - return 'Overduerule'; -} - -=head3 object_class - -=cut - -sub object_class { - return 'Koha::OverdueRule'; -} - -1; -- 2.46.0