Move admin pages part 2

This commit is contained in:
slawkens
2021-07-05 03:11:42 +02:00
parent a2a773d714
commit 7ab6b026fb
29 changed files with 1 additions and 1 deletions

19
admin/pages/phpinfo.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
/**
* PHP Info
*
* @package MyAAC
* @author Slawkens <slawkens@gmail.com>
* @copyright 2019 MyAAC
* @link https://my-aac.org
*/
defined('MYAAC') or die('Direct access not allowed!');
$title = 'PHP Info';
if (!function_exists('phpinfo')) { ?>
<b>phpinfo()</b> function is disabled in your webserver config.<br/>
You can enable it by editing <b>php.ini</b> file.
<?php return;
}
?>
<iframe src="<?php echo BASE_URL; ?>admin/tools/phpinfo.php" width="1024" height="550"/>