| Server IP : 180.180.241.3 / Your IP : 216.73.216.80 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/AppServ/www/news/administrator/components/com_jfusion/views/configdump/tmpl/ |
Upload File : |
<?php
/**
* @package JFusion
* @subpackage Views
* @author JFusion development team
* @copyright Copyright (C) 2008 JFusion. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
JFusionFunctionAdmin::displayDonate();
//load debug library
require_once(JPATH_ADMINISTRATOR .DS.'components'.DS.'com_jfusion'.DS.'models'.DS.'model.debug.php');
$mask = '';
if (JRequest::getVar('mask',false)) {
$mask = 'checked="yes"';
}
$filter = '';
if (JRequest::getVar('filter',false)) {
$filter = 'checked="yes"';
}
?>
<form method="post" action="index.php" name="adminForm" id="adminForm">
<input type="hidden" name="option" value="com_jfusion" />
<input type="hidden" name="task" value="configdump" />
<table>
<tr>
<td style="background-color:#F5A9A9">
<?php echo JText::_('CONFIGDUMP_ERROR');?>
</td>
</tr>
<tr>
<td style="background-color:#FFFF00">
<?php echo JText::_('CONFIGDUMP_POSIBLE_ERROR');?>
</td>
</tr>
<tr>
<td style="background-color:#088A08">
<?php echo JText::_('CONFIGDUMP_SEEMS_OK');?>
</td>
</tr>
<tr>
<td>
<input type="checkbox" <?php echo $filter; ?> name="filter" value="true" /> <?php echo JText::_('CONFIGDUMP_FILTER');?>
</td>
</tr>
<tr>
<td>
<input type="checkbox" <?php echo $mask; ?> name="mask" value="true" /> <?php echo JText::_('CONFIGDUMP_MASK');?>
</td>
</tr>
</table>
</form>
<?php
$textOutput = array();
$title = JText::_('SERVER') . ' ' . JText::_('CONFIGURATION');
//output the information to the user
debug::show($this->server_info, $title);
$textOutput[] = debug::getText($this->server_info, $title);
?><br/><?php
$title = JText::_('JFUSION') . ' ' . JText::_('VERSIONS');
debug::show($this->jfusion_version, $title);
$textOutput[] = debug::getText($this->jfusion_version, $title);
?><br/><?php
debug::$callback = array($this,'jfusion_plugin',null);
foreach($this->jfusion_plugin as $key => $value) {
$title = JText::_('JFUSION') . ' ' . $key . ' ' . JText::_('PLUGIN');
debug::show($value, $title);
$textOutput[] = debug::getText($value, $title);
?><br><?php
}
foreach($this->jfusion_module as $key => $value) {
debug::$callback = array($this,'jfusion_module',$key);
$title = $key . ' ' . JText::_('MODULE');
debug::show($value, $title);
$textOutput[] = debug::getText($value, $title);
?><br><?php
}
foreach($this->joomla_plugin as $key => $value) {
debug::$callback = array($this,'joomla_plugin',$key);
$title = $key . ' ' . JText::_('PLUGIN');
debug::show($value, $title);
$textOutput[] = debug::getText($value, $title);
?><br><?php
}
debug::$callback = array($this,'menu_item',null);
foreach($this->menu_item as $key => $value) {
$title = $key . ' ' . JText::_('MENUITEM');
debug::show($value, $title);
$textOutput[] = debug::getText($value, $title);
?><br><?php
}
$debug=null;
foreach ($textOutput as $value) {
if ($debug) {
$debug .= "\n\n".$value;
} else {
$debug = $value;
}
}
?>
<textarea rows="25" cols="110"><?php echo $debug ?></textarea>