2019-05-02 00:01:43 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module\Admin;
|
|
|
|
|
2020-01-22 23:14:14 -05:00
|
|
|
use Friendica\Module\BaseAdmin;
|
2019-05-02 00:01:43 -04:00
|
|
|
|
2020-01-22 23:14:14 -05:00
|
|
|
class PhpInfo extends BaseAdmin
|
2019-05-02 00:01:43 -04:00
|
|
|
{
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function rawContent(array $parameters = [])
|
2019-05-02 00:01:43 -04:00
|
|
|
{
|
2019-11-05 14:16:26 -05:00
|
|
|
parent::rawContent($parameters);
|
2019-05-02 00:01:43 -04:00
|
|
|
|
|
|
|
phpinfo();
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|