mirror of
https://github.com/friendica/friendica
synced 2025-02-09 14:18:50 +00:00
17 lines
230 B
PHP
17 lines
230 B
PHP
|
<?php
|
||
|
|
||
|
namespace Friendica\Module\Admin;
|
||
|
|
||
|
use Friendica\Module\BaseAdminModule;
|
||
|
|
||
|
class PhpInfo extends BaseAdminModule
|
||
|
{
|
||
|
public static function rawContent()
|
||
|
{
|
||
|
parent::rawContent();
|
||
|
|
||
|
phpinfo();
|
||
|
exit();
|
||
|
}
|
||
|
}
|