Browse Source

Bug 12478: Add Koha::SearchField[s] and Koha::SearchMarcMap[s] classes

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>

Signed-off-by: Brendan Gallagher <brendan@bywatersolutions.com>
16.05.x
Jonathan Druart 9 years ago
committed by Brendan Gallagher
parent
commit
3e95923a8a
  1. 44
      Koha/SearchField.pm
  2. 50
      Koha/SearchFields.pm
  3. 50
      Koha/SearchMarcMap.pm
  4. 50
      Koha/SearchMarcMaps.pm

44
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;

50
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;

50
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;

50
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;
Loading…
Cancel
Save