Froxlor/admin_opcacheinfo.php

87 lines
2.6 KiB
PHP
Raw Normal View History

2016-01-20 21:12:43 +00:00
<?php
/**
* This file is part of the Froxlor project.
* Copyright (c) 2010 the Froxlor Team (see authors).
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
2016-01-20 21:12:43 +00:00
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2022-04-28 18:48:00 +00:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
2016-01-20 21:12:43 +00:00
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, you can also view it online at
2022-04-28 18:48:00 +00:00
* https://files.froxlor.org/misc/COPYING.txt
2016-01-20 21:12:43 +00:00
*
* @copyright the authors
* @author Froxlor team <team@froxlor.org>
* @author Janos Muzsi <muzsij@hypernics.hu>
* @author Andrew Collington <andy@amnuts.com>
2022-04-28 18:48:00 +00:00
* @license https://files.froxlor.org/misc/COPYING.txt GPLv2
*
* Based on https://github.com/amnuts/opcache-gui, which is
* licensed under the MIT licence, which can be viewed
* online at https://acollington.mit-license.org/
2016-01-20 21:12:43 +00:00
*/
const AREA = 'admin';
require __DIR__ . '/lib/init.php';
2016-01-20 21:12:43 +00:00
2022-04-28 18:48:00 +00:00
use Froxlor\FroxlorLogger;
use Froxlor\UI\HTML;
use Froxlor\UI\Panel\UI;
2022-04-28 18:48:00 +00:00
use Froxlor\UI\Response;
if ($action == 'reset' && function_exists('opcache_reset') && $userinfo['change_serversettings'] == '1') {
if ($_POST['send'] == 'send') {
opcache_reset();
$log->logAction(FroxlorLogger::ADM_ACTION, LOG_INFO, "reset OPcache");
header('Location: ' . $linker->getLink([
'section' => 'opcacheinfo',
'page' => 'showinfo'
]));
exit();
} else {
HTML::askYesNo('cache_reallydelete', $filename, [
'page' => $page,
'action' => 'reset',
], '', [
2022-04-28 18:48:00 +00:00
'section' => 'opcacheinfo',
'page' => 'showinfo'
]);
}
2016-01-20 21:12:43 +00:00
}
if (!extension_loaded('Zend OPcache')) {
Response::standardError('no_opcacheinfo');
2016-01-20 21:12:43 +00:00
}
$ocEnabled = ini_get('opcache.enable');
if (empty($ocEnabled)) {
Response::standardError('inactive_opcacheinfo');
}
if ($page == 'showinfo' && $userinfo['change_serversettings'] == '1') {
$time = time();
2022-04-28 18:48:00 +00:00
$log->logAction(FroxlorLogger::ADM_ACTION, LOG_NOTICE, "viewed OPcache info");
$opcache = (new \Amnuts\Opcache\Service())->getData();
UI::view('settings/opcacheinfo.html.twig', [
'opcacheinfo' => [
'version' => $opcache['version'],
'overview' => $opcache['overview'],
'files' => $opcache['files'],
'preload' => $opcache['preload'],
'directives' => $opcache['directives'],
'blacklist' => $opcache['blacklist'],
'functions' => $opcache['functions'],
]
]);
2016-01-20 21:12:43 +00:00
}