mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-29 18:50:25 +02:00
Changes: - Ascraeus now uses constants for the phpbb root path and the php extension. This ensures more security for external applications and modifications (no more overwriting of root path and extension possible through insecure mods and register globals enabled) as well as no more globalizing needed. - A second change implemented here is an additional short-hand-notation for append_sid(). It is allowed to omit the root path and extension now (for example calling append_sid('memberlist')) - in this case the root path and extension get added automatically. The hook is called after these are added. git-svn-id: file:///svn/phpbb/trunk@8572 89ea8834-ac86-4346-8a33-228a782c2dd0
83 lines
2.1 KiB
PHP
83 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* @package acp
|
|
* @version $Id$
|
|
* @copyright (c) 2005 phpBB Group
|
|
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* @ignore
|
|
*/
|
|
if (!defined('IN_PHPBB'))
|
|
{
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* @package acp
|
|
*/
|
|
class acp_php_info
|
|
{
|
|
var $u_action;
|
|
|
|
function main($id, $mode)
|
|
{
|
|
global $db, $user, $auth, $template, $config;
|
|
|
|
if ($mode != 'info')
|
|
{
|
|
trigger_error('NO_MODE', E_USER_ERROR);
|
|
}
|
|
|
|
$this->tpl_name = 'acp_php_info';
|
|
$this->page_title = 'ACP_PHP_INFO';
|
|
|
|
ob_start();
|
|
@phpinfo(INFO_GENERAL | INFO_CONFIGURATION | INFO_MODULES | INFO_VARIABLES);
|
|
$phpinfo = ob_get_clean();
|
|
|
|
$phpinfo = trim($phpinfo);
|
|
|
|
// Here we play around a little with the PHP Info HTML to try and stylise
|
|
// it along phpBB's lines ... hopefully without breaking anything. The idea
|
|
// for this was nabbed from the PHP annotated manual
|
|
preg_match_all('#<body[^>]*>(.*)</body>#si', $phpinfo, $output);
|
|
|
|
if (empty($phpinfo) || empty($output))
|
|
{
|
|
trigger_error('NO_PHPINFO_AVAILABLE', E_USER_WARNING);
|
|
}
|
|
|
|
$output = $output[1][0];
|
|
|
|
// expose_php can make the image not exist
|
|
if (preg_match('#<a[^>]*><img[^>]*></a>#', $output))
|
|
{
|
|
$output = preg_replace('#<tr class="v"><td>(.*?<a[^>]*><img[^>]*></a>)(.*?)</td></tr>#s', '<tr class="row1"><td><table class="type2"><tr><td>\2</td><td>\1</td></tr></table></td></tr>', $output);
|
|
}
|
|
else
|
|
{
|
|
$output = preg_replace('#<tr class="v"><td>(.*?)</td></tr>#s', '<tr class="row1"><td><table class="type2"><tr><td>\1</td></tr></table></td></tr>', $output);
|
|
}
|
|
$output = preg_replace('#<table[^>]+>#i', '<table>', $output);
|
|
$output = preg_replace('#<img border="0"#i', '<img', $output);
|
|
$output = str_replace(array('class="e"', 'class="v"', 'class="h"', '<hr />', '<font', '</font>'), array('class="row1"', 'class="row2"', '', '', '<span', '</span>'), $output);
|
|
|
|
if (empty($output))
|
|
{
|
|
trigger_error('NO_PHPINFO_AVAILABLE', E_USER_WARNING);
|
|
}
|
|
|
|
$orig_output = $output;
|
|
|
|
preg_match_all('#<div class="center">(.*)</div>#siU', $output, $output);
|
|
$output = (!empty($output[1][0])) ? $output[1][0] : $orig_output;
|
|
|
|
$template->assign_var('PHPINFO', $output);
|
|
}
|
|
}
|
|
|
|
?>
|