← Index
NYTProf Performance Profile   « line view »
For svc/members/upsert
  Run on Tue Jan 13 11:50:22 2015
Reported on Tue Jan 13 12:09:51 2015

Filename/mnt/catalyst/koha/kohaversion.pl
StatementsExecuted 5 statements in 185µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11110µs24µsC4::Context::::BEGIN@16C4::Context::BEGIN@16
1113µs3µsC4::Context::::kohaversionC4::Context::kohaversion
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1# the next koha public release version number;
2
3=head1 FUNCTIONS
4
5=head2 kohaversion
6
7the kohaversion is divided in 4 parts :
8 - #1 : the major number. 3 atm
9 - #2 : the functional release. 00 atm
10 - #3 : the subnumber, moves only on a public release
11 - #4 : the developer version. The 4th number is the database subversion.
12 used by developers when the database changes. updatedatabase take care of the changes itself
13 and is automatically called by Auth.pm when needed.
14=cut
15
162177µs238µs
# spent 24µs (10+14) within C4::Context::BEGIN@16 which was called: # once (10µs+14µs) by C4::Context::KOHAVERSION at line 16
use strict;
# spent 24µs making 1 call to C4::Context::BEGIN@16 # spent 14µs making 1 call to strict::import
17
18
# spent 3µs within C4::Context::kohaversion which was called: # once (3µs+0s) by C4::Context::KOHAVERSION at line 222 of C4/Context.pm
sub kohaversion {
191800ns our $VERSION = '3.14.11.000';
20 # version needs to be set this way
21 # so that it can be picked up by Makefile.PL
22 # during install
2315µs return $VERSION;
24}
25
2612µs1;