Bug 9247 - Add two more usage examples to the manpage for koha-mysql
[koha.git] / C4 / Csv.pm
blob74270ff4c11e4a8c289bd3666afb63e6a41d0db9
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
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #use strict;
23 #use warnings; FIXME - Bug 2505
25 use C4::Context;
26 use vars qw($VERSION @ISA @EXPORT);
28 # set the version for version checking
29 $VERSION = 3.07.00.049;
31 @ISA = qw(Exporter);
33 # only export API methods
35 @EXPORT = qw(
36 &GetCsvProfiles
37 &GetCsvProfile
38 &GetCsvProfileId
39 &GetCsvProfilesLoop
40 &GetMarcFieldsForCsv
44 # Returns all informations about csv profiles
45 sub GetCsvProfiles {
46 my $dbh = C4::Context->dbh;
47 my $query = "SELECT * FROM export_format";
49 $sth = $dbh->prepare($query);
50 $sth->execute;
52 $sth->fetchall_arrayref({});
56 # Returns all informations about a given csv profile
57 sub GetCsvProfile {
58 my ($id) = @_;
59 my $dbh = C4::Context->dbh;
60 my $query = "SELECT * FROM export_format WHERE export_format_id=?";
62 $sth = $dbh->prepare($query);
63 $sth->execute($id);
65 return ($sth->fetchrow_hashref);
68 # Returns id of csv profile about a given csv profile name
69 sub GetCsvProfileId {
70 my ($name) = @_;
71 my $dbh = C4::Context->dbh;
72 my $query = "SELECT export_format_id FROM export_format WHERE profile=?";
74 $sth = $dbh->prepare($query);
75 $sth->execute($name);
77 return ( $sth->fetchrow );
80 # Returns fields to extract for the given csv profile
81 sub GetMarcFieldsForCsv {
83 my ($id) = @_;
84 my $dbh = C4::Context->dbh;
85 my $query = "SELECT marcfields FROM export_format WHERE export_format_id=?";
87 $sth = $dbh->prepare($query);
88 $sth->execute($id);
90 return ($sth->fetchrow_hashref)->{marcfields};
95 # Returns informations aboout csv profiles suitable for html templates
96 sub GetCsvProfilesLoop {
97 # List of existing profiles
98 my $dbh = C4::Context->dbh;
99 my $sth;
100 my $query = "SELECT export_format_id, profile FROM export_format";
101 $sth = $dbh->prepare($query);
102 $sth->execute();
103 return $sth->fetchall_arrayref({});