Bug 12478: Add Koha::SearchField[s] and Koha::SearchMarcMap[s] classes
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 25 Sep 2015 14:48:50 +0000 (15:48 +0100)
committerTomas Cohen Arazi <tomascohen@theke.io>
Tue, 26 Apr 2016 13:01:05 +0000 (10:01 -0300)
This was initially submited on bug 14899, but we will need it here.

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Jesse Weaver <jweaver@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>

Koha/SearchField.pm [new file with mode: 0644]
Koha/SearchFields.pm [new file with mode: 0644]
Koha/SearchMarcMap.pm [new file with mode: 0644]
Koha/SearchMarcMaps.pm [new file with mode: 0644]

diff --git a/Koha/SearchField.pm b/Koha/SearchField.pm
new file mode 100644 (file)
index 0000000..72eb9c0
--- /dev/null
@@ -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 (file)
index 0000000..0232630
--- /dev/null
@@ -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 (file)
index 0000000..fc0e00d
--- /dev/null
@@ -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 (file)
index 0000000..a56ebb4
--- /dev/null
@@ -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;