82 lines
2.1 KiB
PHP
82 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
|
*
|
|
*/
|
|
|
|
App::uses('DebugPanel', 'DebugKit.Lib');
|
|
|
|
/**
|
|
* Provides information about your PHP and CakePHP environment to assist with debugging.
|
|
*
|
|
*/
|
|
class EnvironmentPanel extends DebugPanel {
|
|
|
|
/**
|
|
* beforeRender - Get necessary data about environment to pass back to controller
|
|
*
|
|
* @param Controller $controller
|
|
* @return array
|
|
*/
|
|
public function beforeRender(Controller $controller) {
|
|
parent::beforeRender($controller);
|
|
|
|
$return = array();
|
|
|
|
// PHP Data
|
|
$phpVer = phpversion();
|
|
$return['php'] = array_merge(array('PHP_VERSION' => $phpVer), $_SERVER);
|
|
unset($return['php']['argv']);
|
|
|
|
// CakePHP Data
|
|
$return['cake'] = array(
|
|
'APP' => APP,
|
|
'APP_DIR' => APP_DIR,
|
|
'APPLIBS' => APPLIBS,
|
|
'CACHE' => CACHE,
|
|
'CAKE' => CAKE,
|
|
'CAKE_CORE_INCLUDE_PATH' => CAKE_CORE_INCLUDE_PATH,
|
|
'CORE_PATH' => CORE_PATH,
|
|
'CAKE_VERSION' => Configure::version(),
|
|
'CSS' => CSS,
|
|
'CSS_URL' => CSS_URL,
|
|
'DS' => DS,
|
|
'FULL_BASE_URL' => FULL_BASE_URL,
|
|
'IMAGES' => IMAGES,
|
|
'IMAGES_URL' => IMAGES_URL,
|
|
'JS' => JS,
|
|
'JS_URL' => JS_URL,
|
|
'LOGS' => LOGS,
|
|
'ROOT' => ROOT,
|
|
'TESTS' => TESTS,
|
|
'TMP' => TMP,
|
|
'VENDORS' => VENDORS,
|
|
'WEBROOT_DIR' => WEBROOT_DIR,
|
|
'WWW_ROOT' => WWW_ROOT
|
|
);
|
|
|
|
$cakeConstants = array_fill_keys(
|
|
array(
|
|
'DS', 'ROOT', 'FULL_BASE_URL', 'TIME_START', 'SECOND', 'MINUTE', 'HOUR', 'DAY', 'WEEK', 'MONTH', 'YEAR',
|
|
'LOG_ERROR', 'FULL_BASE_URL'
|
|
), ''
|
|
);
|
|
$var = get_defined_constants(true);
|
|
$return['app'] = array_diff_key($var['user'], $return['cake'], $cakeConstants);
|
|
|
|
if (isset($var['hidef'])) {
|
|
$return['hidef'] = $var['hidef'];
|
|
}
|
|
|
|
return $return;
|
|
}
|
|
}
|