← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/share/koha/opac/cgi-bin/opac/opac-search.pl
  Run on Tue Oct 15 17:10:45 2013
Reported on Tue Oct 15 17:12:36 2013

Filename/usr/share/koha/lib/C4/Stats.pm
StatementsExecuted 21 statements in 695µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111251µs257µsC4::Stats::::BEGIN@24C4::Stats::BEGIN@24
11156µs56µsC4::Stats::::BEGIN@30C4::Stats::BEGIN@30
11128µs36µsC4::Stats::::BEGIN@21C4::Stats::BEGIN@21
11117µs176µsC4::Stats::::BEGIN@25C4::Stats::BEGIN@25
11115µs47µsC4::Stats::::BEGIN@22C4::Stats::BEGIN@22
11112µs117µsC4::Stats::::BEGIN@26C4::Stats::BEGIN@26
0000s0sC4::Stats::::TotalPaidC4::Stats::TotalPaid
0000s0sC4::Stats::::UpdateStatsC4::Stats::UpdateStats
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package C4::Stats;
2
3
4# Copyright 2000-2002 Katipo Communications
5#
6# This file is part of Koha.
7#
8# Koha is free software; you can redistribute it and/or modify it under the
9# terms of the GNU General Public License as published by the Free Software
10# Foundation; either version 2 of the License, or (at your option) any later
11# version.
12#
13# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License along
18# with Koha; if not, write to the Free Software Foundation, Inc.,
19# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21332µs244µs
# spent 36µs (28+8) within C4::Stats::BEGIN@21 which was called: # once (28µs+8µs) by C4::Circulation::BEGIN@26 at line 21
use strict;
# spent 36µs making 1 call to C4::Stats::BEGIN@21 # spent 8µs making 1 call to strict::import
223156µs279µs
# spent 47µs (15+32) within C4::Stats::BEGIN@22 which was called: # once (15µs+32µs) by C4::Circulation::BEGIN@26 at line 22
use warnings;
# spent 47µs making 1 call to C4::Stats::BEGIN@22 # spent 32µs making 1 call to warnings::import
2311µsrequire Exporter;
24350µs2263µs
# spent 257µs (251+6) within C4::Stats::BEGIN@24 which was called: # once (251µs+6µs) by C4::Circulation::BEGIN@26 at line 24
use C4::Context;
# spent 257µs making 1 call to C4::Stats::BEGIN@24 # spent 6µs making 1 call to C4::Context::import
25344µs2334µs
# spent 176µs (17+158) within C4::Stats::BEGIN@25 which was called: # once (17µs+158µs) by C4::Circulation::BEGIN@26 at line 25
use C4::Debug;
# spent 176µs making 1 call to C4::Stats::BEGIN@25 # spent 158µs making 1 call to Exporter::import
26381µs2222µs
# spent 117µs (12+105) within C4::Stats::BEGIN@26 which was called: # once (12µs+105µs) by C4::Circulation::BEGIN@26 at line 26
use vars qw($VERSION @ISA @EXPORT);
# spent 117µs making 1 call to C4::Stats::BEGIN@26 # spent 105µs making 1 call to vars::import
27
281300nsour $debug;
29
30
# spent 56µs within C4::Stats::BEGIN@30 which was called: # once (56µs+0s) by C4::Circulation::BEGIN@26 at line 38
BEGIN {
31 # set the version for version checking
3213µs $VERSION = 3.07.00.049;
33115µs @ISA = qw(Exporter);
34138µs @EXPORT = qw(
35 &UpdateStats
36 &TotalPaid
37 );
381273µs156µs}
# spent 56µs making 1 call to C4::Stats::BEGIN@30
39
40
41=head1 NAME
42
- -
72#'
73sub UpdateStats {
74
75 #module to insert stats data into stats table
76 my (
77 $branch, $type,
78 $amount, $other, $itemnum,
79 $itemtype, $borrowernumber, $accountno, $ccode
80 )
81 = @_;
82 my $dbh = C4::Context->dbh;
83 my $sth = $dbh->prepare(
84 "INSERT INTO statistics
85 (datetime, branch, type, value,
86 other, itemnumber, itemtype, borrowernumber, proccode, ccode)
87 VALUES (now(),?,?,?,?,?,?,?,?,?)"
88 );
89 $sth->execute(
90 $branch, $type, $amount,
91 $other, $itemnum, $itemtype, $borrowernumber,
92 $accountno, $ccode
93 );
94}
95
96# Otherwise, it'd need a POD.
97sub TotalPaid {
98 my ( $time, $time2, $spreadsheet ) = @_;
99 $time2 = $time unless $time2;
100 my $dbh = C4::Context->dbh;
101 my $query = "SELECT * FROM statistics
102 LEFT JOIN borrowers ON statistics.borrowernumber= borrowers.borrowernumber
103 WHERE (statistics.type='payment' OR statistics.type='writeoff') ";
104 if ( $time eq 'today' ) {
105 $query .= " AND datetime = now()";
106 } else {
107 $query .= " AND datetime > '$time'"; # FIXME: use placeholders
108 }
109 if ( $time2 ne '' ) {
110 $query .= " AND datetime < '$time2'"; # FIXME: use placeholders
111 }
112 if ($spreadsheet) {
113 $query .= " ORDER BY branch, type";
114 }
115 $debug and warn "TotalPaid query: $query";
116 my $sth = $dbh->prepare($query);
117 $sth->execute();
118 return @{$sth->fetchall_arrayref({})};
119}
120
12113µs1;
122__END__