Bug 15451: Koha::CsvProfiles - Remove GetCsvProfiles
[koha.git] / C4 / Csv.pm
1 package C4::Csv;
2
3 # Copyright 2008 BibLibre
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
16 #
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>.
19 #
20 #
21
22 #use strict;
23 #use warnings; FIXME - Bug 2505
24
25 use C4::Context;
26 use vars qw(@ISA @EXPORT);
27
28
29 @ISA = qw(Exporter);
30
31 # only export API methods
32
33 @EXPORT = qw(
34   &GetCsvProfile
35   &GetCsvProfileId
36   &GetMarcFieldsForCsv
37 );
38
39
40 # Returns all informations about a given csv profile
41 sub GetCsvProfile {
42     my ($id) = @_;
43     my $dbh = C4::Context->dbh;
44     my $query = "SELECT * FROM export_format WHERE export_format_id=?";
45
46     $sth = $dbh->prepare($query);
47     $sth->execute($id);
48
49     return ($sth->fetchrow_hashref);
50 }
51
52 # Returns id of csv profile about a given csv profile name
53 sub GetCsvProfileId {
54     my ($name)  = @_;
55     my $dbh   = C4::Context->dbh;
56     my $query = "SELECT export_format_id FROM export_format WHERE profile=?";
57
58     $sth = $dbh->prepare($query);
59     $sth->execute($name);
60
61     return ( $sth->fetchrow );
62 }
63
64 # Returns fields to extract for the given csv profile
65 sub GetMarcFieldsForCsv {
66
67     my ($id) = @_;
68     my $dbh = C4::Context->dbh;
69     my $query = "SELECT content FROM export_format WHERE export_format_id=?";
70
71     $sth = $dbh->prepare($query);
72     $sth->execute($id);
73
74     return ($sth->fetchrow_hashref)->{content};
75     
76  
77 }
78
79
80 1;