3 # Copyright 2008 BibLibre
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #use warnings; FIXME - Bug 2505
26 use vars
qw($VERSION @ISA @EXPORT);
28 # set the version for version checking
33 # only export API methods
43 # Returns all informations about csv profiles
45 my $dbh = C4
::Context
->dbh;
46 my $query = "SELECT * FROM export_format";
48 $sth = $dbh->prepare($query);
51 $sth->fetchall_arrayref({});
55 # Returns all informations about a given csv profile
58 my $dbh = C4
::Context
->dbh;
59 my $query = "SELECT * FROM export_format WHERE export_format_id=?";
61 $sth = $dbh->prepare($query);
64 return ($sth->fetchrow_hashref);
67 # Returns fields to extract for the given csv profile
68 sub GetMarcFieldsForCsv
{
71 my $dbh = C4
::Context
->dbh;
72 my $query = "SELECT marcfields FROM export_format WHERE export_format_id=?";
74 $sth = $dbh->prepare($query);
77 return ($sth->fetchrow_hashref)->{marcfields
};
82 # Returns informations aboout csv profiles suitable for html templates
83 sub GetCsvProfilesLoop
{
84 # List of existing profiles
85 my $dbh = C4
::Context
->dbh;
87 my $query = "SELECT export_format_id, profile FROM export_format";
88 $sth = $dbh->prepare($query);
90 return $sth->fetchall_arrayref({});