From 1e725a26578392c13d712b56276ac3c155c01018 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 25 Sep 2015 15:48:50 +0100 Subject: [PATCH] Bug 14899: Add Koha::SearchField[s] and Koha::SearchMarcMap[s] classes --- Koha/SearchField.pm | 44 ++++++++++++++++++++++++++++++++++++++++++++ Koha/SearchFields.pm | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ Koha/SearchMarcMap.pm | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ Koha/SearchMarcMaps.pm | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 194 insertions(+) create mode 100644 Koha/SearchField.pm create mode 100644 Koha/SearchFields.pm create mode 100644 Koha/SearchMarcMap.pm create mode 100644 Koha/SearchMarcMaps.pm diff --git a/Koha/SearchField.pm b/Koha/SearchField.pm new file mode 100644 index 0000000..72eb9c0 --- /dev/null +++ b/Koha/SearchField.pm @@ -0,0 +1,44 @@ +package Koha::SearchField; + +# 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::SearchField - Koha SearchField Object class + +=head1 API + +=head2 Class Methods + +=cut + +=head3 type + +=cut + +sub type { + return 'SearchField'; +} + +1; diff --git a/Koha/SearchFields.pm b/Koha/SearchFields.pm new file mode 100644 index 0000000..0232630 --- /dev/null +++ b/Koha/SearchFields.pm @@ -0,0 +1,50 @@ +package Koha::SearchFields; + +# 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::SearchField; + +use base qw(Koha::Objects); + +=head1 NAME + +Koha::SearchFields - Koha SearchField Object set class + +=head1 API + +=head2 Class Methods + +=cut + +=head3 type + +=cut + +sub type { + return 'SearchField'; +} + +sub object_class { + return 'Koha::SearchField'; +} + +1; diff --git a/Koha/SearchMarcMap.pm b/Koha/SearchMarcMap.pm new file mode 100644 index 0000000..fc0e00d --- /dev/null +++ b/Koha/SearchMarcMap.pm @@ -0,0 +1,50 @@ +package Koha::SearchMarcMap; + +# 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::SearchMarcMap - Koha SearchMarcMap Object class + +=head1 API + +=head2 Class Methods + +=cut + +sub add_to_search_fields { + my( $self, $params) = @_; + $self->_result->add_to_search_fields($params); + +} + +=head3 type + +=cut + +sub type { + return 'SearchMarcMap'; +} + +1; diff --git a/Koha/SearchMarcMaps.pm b/Koha/SearchMarcMaps.pm new file mode 100644 index 0000000..a56ebb4 --- /dev/null +++ b/Koha/SearchMarcMaps.pm @@ -0,0 +1,50 @@ +package Koha::SearchMarcMaps; + +# 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::SearchMarcMap; + +use base qw(Koha::Objects); + +=head1 NAME + +Koha::SearchMarcMaps - Koha SearchMarcMap Object set class + +=head1 API + +=head2 Class Methods + +=cut + +=head3 type + +=cut + +sub type { + return 'SearchMarcMap'; +} + +sub object_class { + return 'Koha::SearchMarcMap'; +} + +1; -- 2.1.0