Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 36 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
Printms | |
0.00% |
0 / 36 |
|
0.00% |
0 / 1 |
30 | |
0.00% |
0 / 1 |
__invoke | |
0.00% |
0 / 36 |
|
0.00% |
0 / 1 |
30 |
1 | <?php |
2 | |
3 | /** |
4 | * Prints a human readable format from a number of milliseconds |
5 | * |
6 | * PHP version 8 |
7 | * |
8 | * Copyright (C) Villanova University 2010. |
9 | * |
10 | * This program is free software; you can redistribute it and/or modify |
11 | * it under the terms of the GNU General Public License version 2, |
12 | * as published by the Free Software Foundation. |
13 | * |
14 | * This program is distributed in the hope that it will be useful, |
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17 | * GNU General Public License for more details. |
18 | * |
19 | * You should have received a copy of the GNU General Public License |
20 | * along with this program; if not, write to the Free Software |
21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
22 | * |
23 | * @category VuFind |
24 | * @package View_Helpers |
25 | * @author Demian Katz <demian.katz@villanova.edu> |
26 | * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License |
27 | * @link https://vufind.org/wiki/development Wiki |
28 | */ |
29 | |
30 | namespace VuFind\View\Helper\Root; |
31 | |
32 | use Laminas\View\Helper\AbstractHelper; |
33 | |
34 | /** |
35 | * Prints a human readable format from a number of milliseconds |
36 | * |
37 | * @category VuFind |
38 | * @package View_Helpers |
39 | * @author Demian Katz <demian.katz@villanova.edu> |
40 | * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License |
41 | * @link https://vufind.org/wiki/development Wiki |
42 | */ |
43 | class Printms extends AbstractHelper |
44 | { |
45 | /** |
46 | * Prints a human readable format from a number of milliseconds |
47 | * |
48 | * @param float $ms Number of milliseconds |
49 | * |
50 | * @return string Human-readable representation |
51 | */ |
52 | public function __invoke($ms) |
53 | { |
54 | // If we can't do the math, don't bother formatting the value: |
55 | if (!is_numeric($ms)) { |
56 | return $ms; |
57 | } |
58 | $seconds = floor($ms / 1000); |
59 | |
60 | $minutes = floor($seconds / 60); |
61 | $seconds = ($seconds % 60); |
62 | |
63 | $hours = floor($minutes / 60); |
64 | $minutes = ($minutes % 60); |
65 | |
66 | if ($hours) { |
67 | $days = floor($hours / 60); |
68 | $hours = ($hours % 60); |
69 | |
70 | if ($days) { |
71 | $years = floor($days / 365); |
72 | $days = ($days % 365); |
73 | |
74 | if ($years) { |
75 | return sprintf( |
76 | '%d years %d days %d hours %d minutes %d seconds', |
77 | $years, |
78 | $days, |
79 | $hours, |
80 | $minutes, |
81 | $seconds |
82 | ); |
83 | } else { |
84 | return sprintf( |
85 | '%d days %d hours %d minutes %d seconds', |
86 | $days, |
87 | $hours, |
88 | $minutes, |
89 | $seconds |
90 | ); |
91 | } |
92 | } else { |
93 | return sprintf( |
94 | '%d hours %d minutes %d seconds', |
95 | $hours, |
96 | $minutes, |
97 | $seconds |
98 | ); |
99 | } |
100 | } else { |
101 | return sprintf('%d minutes %d seconds', $minutes, $seconds); |
102 | } |
103 | } |
104 | } |