Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 12 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
tao_install_checks_Opcache | |
0.00% |
0 / 12 |
|
0.00% |
0 / 1 |
30 | |
0.00% |
0 / 1 |
check | |
0.00% |
0 / 12 |
|
0.00% |
0 / 1 |
30 |
1 | <?php |
2 | |
3 | /** |
4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU General Public License |
6 | * as published by the Free Software Foundation; under version 2 |
7 | * of the License (non-upgradable). |
8 | * |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * GNU General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU General Public License |
15 | * along with this program; if not, write to the Free Software |
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
17 | * |
18 | * Copyright (c) 2015 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT); |
19 | * @author Mikhail Kamarouski, <kamarouski@1pt.com> |
20 | */ |
21 | class tao_install_checks_Opcache extends common_configuration_Component |
22 | { |
23 | /** |
24 | * @return common_configuration_Report |
25 | */ |
26 | public function check() |
27 | { |
28 | $error = null; |
29 | |
30 | if (! function_exists('opcache_get_configuration')) { |
31 | $error = 'You can install OPcache extension to improve performance'; |
32 | } else { |
33 | $configuration = opcache_get_configuration(); |
34 | |
35 | if (! $configuration['directives']['opcache.enable']) { |
36 | $error = 'You can enable OPcache extension to improve performance'; |
37 | } |
38 | } |
39 | |
40 | $report = new common_configuration_Report( |
41 | null !== $error ? common_configuration_Report::INVALID : common_configuration_Report::VALID, |
42 | null !== $error ? $error : 'OPcache is installed', |
43 | $this |
44 | ); |
45 | |
46 | return $report; |
47 | } |
48 | } |