Bug 3609 Fix fr-FR user permissions
[koha.git] / C4 / Csv.pm
bloba53fcb91dfe1b273134e4591123a119761ddbc9c
1 package C4::Csv;
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
10 # version.
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 with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA 02111-1307 USA
22 use C4::Context;
23 use vars qw($VERSION @ISA @EXPORT);
25 # set the version for version checking
26 $VERSION = 3.00;
28 @ISA = qw(Exporter);
30 # only export API methods
32 @EXPORT = qw(
33 &GetCsvProfiles
34 &GetCsvProfile
35 &GetCsvProfilesLoop
36 &GetMarcFieldsForCsv
40 # Returns all informations about csv profiles
41 sub GetCsvProfiles {
42 my $dbh = C4::Context->dbh;
43 my $query = "SELECT * FROM export_format";
45 $sth = $dbh->prepare($query);
46 $sth->execute;
48 $sth->fetchall_arrayref({});
52 # Returns all informations about a given csv profile
53 sub GetCsvProfile {
54 my ($id) = @_;
55 my $dbh = C4::Context->dbh;
56 my $query = "SELECT * FROM export_format WHERE export_format_id=?";
58 $sth = $dbh->prepare($query);
59 $sth->execute($id);
61 return ($sth->fetchrow_hashref);
64 # Returns fields to extract for the given csv profile
65 sub GetMarcFieldsForCsv {
67 my ($id) = @_;
68 my $dbh = C4::Context->dbh;
69 my $query = "SELECT marcfields FROM export_format WHERE export_format_id=?";
71 $sth = $dbh->prepare($query);
72 $sth->execute($id);
74 return ($sth->fetchrow_hashref)->{marcfields};
79 # Returns informations aboout csv profiles suitable for html templates
80 sub GetCsvProfilesLoop {
81 # List of existing profiles
82 my $dbh = C4::Context->dbh;
83 my $sth;
84 my $query = "SELECT export_format_id, profile FROM export_format";
85 $sth = $dbh->prepare($query);
86 $sth->execute();
87 return $sth->fetchall_arrayref({});