Update release notes for 19.05.02 release
[koha.git] / C4 / Reports.pm
1 package C4::Reports;
2
3 # Copyright 2007 Liblime Ltd
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 use strict;
21 #use warnings; FIXME - Bug 2505
22 use CGI qw ( -utf8 );
23
24 use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
25 use C4::Context;
26 use C4::Debug;
27
28 BEGIN {
29     require Exporter;
30     @ISA = qw(Exporter);
31     @EXPORT = qw(
32         GetDelimiterChoices
33     );
34 }
35
36 =head1 NAME
37
38 C4::Reports - Module for generating reports 
39
40 =head1 DESCRIPTION
41
42 This module contains functions common to reports.
43
44 =head1 EXPORTED FUNCTIONS
45
46 =head2 GetDelimiterChoices
47
48   my $delims = GetDelimiterChoices;
49
50 This will return a list of all the available delimiters.
51
52 =cut
53
54 sub GetDelimiterChoices {
55     my $dbh = C4::Context->dbh;
56
57     my $sth = $dbh->prepare("
58       SELECT options, value
59       FROM systempreferences
60       WHERE variable = 'delimiter'
61     ");
62
63     $sth->execute();
64
65     my ($choices, $default) = $sth->fetchrow;
66     my @dels = split /\|/, $choices;
67
68     return {
69         values  => \@dels,
70         default => $default,
71     };
72 }
73
74 1;
75
76 __END__
77
78 =head1 AUTHOR
79
80 Jesse Weaver <jesse.weaver@liblime.com>
81
82 =cut