Not really used directly anymore.
[phpmyadmin/blinky.git] / phpinfo.php
blob043db956395a10b88ed8bb4b26318f4c786bd063
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * phpinfo() wrapper to allow displaying only when configured to do so.
5 * @version $Id$
6 * @package phpMyAdmin
7 */
9 /**
10 * @ignore
12 define('PMA_MINIMUM_COMMON', true);
13 /**
14 * Gets core libraries and defines some variables
16 require_once './libraries/common.inc.php';
19 /**
20 * Displays PHP information
22 if ($GLOBALS['cfg']['ShowPhpInfo']) {
23 phpinfo();