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