Bugzilla – Attachment 43054 Details for
Bug 14899
Mapping configuration page for Elastic search
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14899: Add Koha::SearchField[s] and Koha::SearchMarcMap[s] classes
Bug-14899-Add-KohaSearchFields-and-KohaSearchMarcM.patch (text/plain), 5.73 KB, created by
Jonathan Druart
on 2015-10-02 09:49:58 UTC
(
hide
)
Description:
Bug 14899: Add Koha::SearchField[s] and Koha::SearchMarcMap[s] classes
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2015-10-02 09:49:58 UTC
Size:
5.73 KB
patch
obsolete
>From f3fed34cc7e5275344724f36c18a88c5591ecdbd 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 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
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 14899
:
42882
|
42883
|
42884
|
42885
|
42886
|
43054
|
43055
|
43056
|
43057
|
43058
|
43099
|
43353
|
43354
|
43355
|
50995
|
50996
|
50997
|
55915
|
55916
|
55917
|
55918
|
55957
|
55958
|
55959
|
55960
|
56182
|
56183
|
56194
|
56195
|
56196
|
56197
|
56198
|
56199