3 # Copyright 2008 BibLibre
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
23 #use warnings; FIXME - Bug 2505
26 use vars
qw($VERSION @ISA @EXPORT);
28 # set the version for version checking
29 $VERSION = 3.07.00.049;
33 # only export API methods
44 # Returns all informations about csv profiles
47 my $dbh = C4
::Context
->dbh;
48 my $query = "SELECT * FROM export_format";
50 $query .= " WHERE type = ?";
53 $sth = $dbh->prepare($query);
54 $sth->execute( $type ?
$type : () );
56 $sth->fetchall_arrayref({});
60 # Returns all informations about a given csv profile
63 my $dbh = C4
::Context
->dbh;
64 my $query = "SELECT * FROM export_format WHERE export_format_id=?";
66 $sth = $dbh->prepare($query);
69 return ($sth->fetchrow_hashref);
72 # Returns id of csv profile about a given csv profile name
75 my $dbh = C4
::Context
->dbh;
76 my $query = "SELECT export_format_id FROM export_format WHERE profile=?";
78 $sth = $dbh->prepare($query);
81 return ( $sth->fetchrow );
84 # Returns fields to extract for the given csv profile
85 sub GetMarcFieldsForCsv
{
88 my $dbh = C4
::Context
->dbh;
89 my $query = "SELECT content FROM export_format WHERE export_format_id=?";
91 $sth = $dbh->prepare($query);
94 return ($sth->fetchrow_hashref)->{content
};
99 # Returns informations aboout csv profiles suitable for html templates
100 sub GetCsvProfilesLoop
{
102 # List of existing profiles
103 my $dbh = C4
::Context
->dbh;
105 my $query = "SELECT export_format_id, profile FROM export_format";
107 $query .= " WHERE type = ?";
110 $sth = $dbh->prepare($query);
111 $sth->execute( $type ?
$type : () );
112 return $sth->fetchall_arrayref({});