Bugzilla – Attachment 43347 Details for
Bug 12478
Elasticsearch support for Koha
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 12478: Add Koha::SearchField[s] and Koha::SearchMarcMap[s] classes
Bug-12478-Add-KohaSearchFields-and-KohaSearchMarcM.patch (text/plain), 5.79 KB, created by
Jonathan Druart
on 2015-10-12 16:18:02 UTC
(
hide
)
Description:
Bug 12478: Add Koha::SearchField[s] and Koha::SearchMarcMap[s] classes
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2015-10-12 16:18:02 UTC
Size:
5.79 KB
patch
obsolete
>From 8495294aa9ecddffa6aee866b820ee9e629569bb Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Fri, 25 Sep 2015 15:48:50 +0100 >Subject: [PATCH] Bug 12478: Add Koha::SearchField[s] and > Koha::SearchMarcMap[s] classes > >This was initially submited on bug 14899, but we will need it here. >--- > 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
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 12478
:
29204
|
31128
|
31129
|
33136
|
33137
|
33138
|
33139
|
33140
|
33141
|
35654
|
40903
|
42030
|
42031
|
42032
|
42033
|
42062
|
42063
|
42064
|
42065
|
42066
|
42067
|
42068
|
42069
|
42392
|
42393
|
43127
|
43128
|
43129
|
43130
|
43131
|
43132
|
43133
|
43134
|
43140
|
43141
|
43142
|
43148
|
43345
|
43346
|
43347
|
43348
|
43349
|
43350
|
43351
|
43352
|
43373
|
47767
|
47768
|
50115
|
50159
|
50211
|
50212
|
50213
|
50214
|
50245
|
50246
|
50291
|
50292