| File | kohaversion.pl | Statements Executed | 6 | Total Time | 8.2e-05 seconds |
| Calls | Inclusive Time | Subroutine | |
|---|---|---|---|
| 1 | 0.00002 | C4::Context:: | kohaversion |
| 0 | 0 | C4::Context:: | BEGIN |
| Line | Stmts. | Exclusive Time | Avg. | Code |
|---|---|---|---|---|
| 1 | # the next koha public release version number; | |||
| 2 | # the kohaversion is divided in 4 parts : | |||
| 3 | # - #1 : the major number. 3 atm | |||
| 4 | # - #2 : the functionnal release. 00 atm | |||
| 5 | # - #3 : the subnumber, moves only on a public release | |||
| 6 | # - #4 : the developer version. The 4th number is the database subversion. | |||
| 7 | # used by developers when the database changes. updatedatabase take care of the changes itself | |||
| 8 | # and is automatically called by Auth.pm when needed. | |||
| 9 | ||||
| 10 | 3 | 0.00008 | 0.00003 | use strict; # spent 0.00001s making 1 calls to strict::import |
| 11 | ||||
| 12 | # spent 0.00002s within C4::Context::kohaversion which was called:
# 1 times (0.00002s) by C4::Context::KOHAVERSION at line 214 of C4/Context.pm sub kohaversion { | |||
| 13 | 2 | 2e-06 | 1e-06 | our $VERSION = '3.00.00.099'; |
| 14 | # version needs to be set this way | |||
| 15 | # so that it can be picked up by Makefile.PL | |||
| 16 | # during install | |||
| 17 | return $VERSION; | |||
| 18 | } | |||
| 19 | ||||
| 20 | 1 | 4e-06 | 4e-06 | 1; |