You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
685 B
34 lines
685 B
<?php |
|
/** |
|
* phpinfo() wrapper to allow displaying only when configured to do so. |
|
*/ |
|
|
|
declare(strict_types=1); |
|
|
|
namespace PhpMyAdmin\Controllers; |
|
|
|
use function phpinfo; |
|
|
|
use const INFO_CONFIGURATION; |
|
use const INFO_GENERAL; |
|
use const INFO_MODULES; |
|
|
|
/** |
|
* phpinfo() wrapper to allow displaying only when configured to do so. |
|
*/ |
|
class PhpInfoController extends AbstractController |
|
{ |
|
public function __invoke(): void |
|
{ |
|
global $cfg; |
|
|
|
$this->response->disable(); |
|
$this->response->getHeader()->sendHttpHeaders(); |
|
|
|
if (! $cfg['ShowPhpInfo']) { |
|
return; |
|
} |
|
|
|
phpinfo(INFO_GENERAL | INFO_CONFIGURATION | INFO_MODULES); |
|
} |
|
}
|
|
|