29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-27 07:33:41 +00:00
cms/administrator/components/com_admin/views/sysinfo/tmpl/default_config.php
Ian MacLennan f53061c4fe # Updating Copyright Year
git-svn-id: http://joomlacode.org/svn/joomla/development/trunk@20196 6f6e1ebd-4c2b-0410-823f-f34bde69bce9
2011-01-09 02:40:25 +00:00

45 lines
980 B
PHP

<?php
/**
* @version $Id$
* @package Joomla.Administrator
* @subpackage com_admin
* @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// no direct access
defined('_JEXEC') or die;
?>
<fieldset class="adminform">
<legend><?php echo JText::_('COM_ADMIN_CONFIGURATION_FILE'); ?></legend>
<table class="adminlist">
<thead>
<tr>
<th width="300">
<?php echo JText::_('COM_ADMIN_SETTING'); ?>
</th>
<th>
<?php echo JText::_('COM_ADMIN_VALUE'); ?>
</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="2">&#160;</td>
</tr>
</tfoot>
<tbody>
<?php foreach ($this->config as $key=>$value):?>
<tr>
<td>
<?php echo $key;?>
</td>
<td>
<?php echo htmlspecialchars($value, ENT_QUOTES);?>
</td>
</tr>
<?php endforeach;?>
</tbody>
</table>
</fieldset>