Bug 25067: Move PO file manipulation code into gulp tasks
[koha.git] / C4 / Reports.pm
bloba0aa718feaf22f9dab4d78eb1ce0629bec1b5b13
1 package C4::Reports;
3 # Copyright 2007 Liblime Ltd
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>.
20 use Modern::Perl;
21 use CGI qw ( -utf8 );
23 use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
24 use C4::Context;
25 use C4::Debug;
27 BEGIN {
28 require Exporter;
29 @ISA = qw(Exporter);
30 @EXPORT = qw(
31 GetDelimiterChoices
35 =head1 NAME
37 C4::Reports - Module for generating reports
39 =head1 DESCRIPTION
41 This module contains functions common to reports.
43 =head1 EXPORTED FUNCTIONS
45 =head2 GetDelimiterChoices
47 my $delims = GetDelimiterChoices;
49 This will return a list of all the available delimiters.
51 =cut
53 sub GetDelimiterChoices {
54 my $dbh = C4::Context->dbh;
56 my $sth = $dbh->prepare("
57 SELECT options, value
58 FROM systempreferences
59 WHERE variable = 'delimiter'
60 ");
62 $sth->execute();
64 my ($choices, $default) = $sth->fetchrow;
65 my @dels = split /\|/, $choices;
67 return {
68 values => \@dels,
69 default => $default,
75 __END__
77 =head1 AUTHOR
79 Jesse Weaver <jesse.weaver@liblime.com>
81 =cut