You've already forked joomla_test
							
							first commit
This commit is contained in:
		| @ -0,0 +1,114 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| JHtml::_('behavior.formvalidation'); | ||||
| JHtml::_('formbehavior.chosen', 'select'); | ||||
|  | ||||
| ?> | ||||
| <script type="text/javascript"> | ||||
| 	Joomla.submitbutton = function(task) | ||||
| 	{ | ||||
| 		if (task == 'application.cancel' || document.formvalidator.isValid(document.id('application-form'))) { | ||||
| 			Joomla.submitform(task, document.getElementById('application-form')); | ||||
| 		} | ||||
| 	} | ||||
| </script> | ||||
|  | ||||
| <form action="<?php echo JRoute::_('index.php?option=com_config'); ?>" id="application-form" method="post" name="adminForm" class="form-validate"> | ||||
| 	<div class="row-fluid"> | ||||
| 		<!-- Begin Sidebar --> | ||||
| 		<div id="sidebar" class="span2"> | ||||
| 			<div class="sidebar-nav"> | ||||
| 				<?php echo $this->loadTemplate('navigation'); ?> | ||||
| 				<?php | ||||
| 				// Display the submenu position modules | ||||
| 				$this->submenumodules = JModuleHelper::getModules('submenu'); | ||||
| 				foreach ($this->submenumodules as $submenumodule) | ||||
| 				{ | ||||
| 					$output = JModuleHelper::renderModule($submenumodule); | ||||
| 					$params = new JRegistry; | ||||
| 					$params->loadString($submenumodule->params); | ||||
| 					echo $output; | ||||
| 				} | ||||
| 				?> | ||||
| 			</div> | ||||
| 		</div> | ||||
| 		<!-- End Sidebar --> | ||||
| 		<!-- Begin Content --> | ||||
| 		<div class="span10"> | ||||
| 			<?php echo JHtml::_('bootstrap.startTabSet', 'myTab', array('active' => 'page-site')); ?> | ||||
|  | ||||
| 			<?php echo JHtml::_('bootstrap.addTab', 'myTab', 'page-site', JText::_('JSITE', true)); ?> | ||||
| 			<div class="row-fluid"> | ||||
| 				<div class="span6"> | ||||
| 					<?php echo $this->loadTemplate('site'); ?> | ||||
| 					<?php echo $this->loadTemplate('metadata'); ?> | ||||
| 				</div> | ||||
| 				<div class="span6"> | ||||
| 					<?php echo $this->loadTemplate('seo'); ?> | ||||
| 					<?php echo $this->loadTemplate('cookie'); ?> | ||||
| 				</div> | ||||
| 			</div> | ||||
| 			<?php echo JHtml::_('bootstrap.endTab'); ?> | ||||
|  | ||||
| 			<?php echo JHtml::_('bootstrap.addTab', 'myTab', 'page-system', JText::_('COM_CONFIG_SYSTEM', true)); ?> | ||||
| 			<div class="row-fluid"> | ||||
| 				<div class="span6"> | ||||
| 					<?php echo $this->loadTemplate('system'); ?> | ||||
| 					<?php echo $this->loadTemplate('debug'); ?> | ||||
| 				</div> | ||||
| 				<div class="span6"> | ||||
| 					<?php echo $this->loadTemplate('cache'); ?> | ||||
| 					<?php echo $this->loadTemplate('session'); ?> | ||||
| 				</div> | ||||
| 			</div> | ||||
| 			<?php echo JHtml::_('bootstrap.endTab'); ?> | ||||
|  | ||||
| 			<?php echo JHtml::_('bootstrap.addTab', 'myTab', 'page-server', JText::_('COM_CONFIG_SERVER', true)); ?> | ||||
| 			<div class="row-fluid"> | ||||
| 				<div class="span6"> | ||||
| 					<?php echo $this->loadTemplate('server'); ?> | ||||
| 					<?php echo $this->loadTemplate('locale'); ?> | ||||
| 					<?php echo $this->loadTemplate('ftp'); ?> | ||||
| 				</div> | ||||
| 				<div class="span6"> | ||||
| 					<?php echo $this->loadTemplate('database'); ?> | ||||
| 					<?php echo $this->loadTemplate('mail'); ?> | ||||
| 				</div> | ||||
| 			</div> | ||||
| 			<?php echo JHtml::_('bootstrap.endTab'); ?> | ||||
|  | ||||
| 			<?php echo JHtml::_('bootstrap.addTab', 'myTab', 'page-permissions', JText::_('COM_CONFIG_PERMISSIONS', true)); ?> | ||||
| 			<div class="row-fluid"> | ||||
| 				<?php echo $this->loadTemplate('permissions'); ?> | ||||
| 			</div> | ||||
| 			<?php echo JHtml::_('bootstrap.endTab'); ?> | ||||
|  | ||||
| 			<?php echo JHtml::_('bootstrap.addTab', 'myTab', 'page-filters', JText::_('COM_CONFIG_TEXT_FILTERS', true)); ?> | ||||
| 			<div class="row-fluid"> | ||||
| 				<?php echo $this->loadTemplate('filters'); ?> | ||||
| 			</div> | ||||
| 			<?php echo JHtml::_('bootstrap.endTab'); ?> | ||||
|  | ||||
| 			<?php if ($this->ftp) : ?> | ||||
| 				<?php echo JHtml::_('bootstrap.addTab', 'myTab', 'page-ftp', JText::_('COM_CONFIG_FTP_SETTINGS', true)); ?> | ||||
| 				<?php echo $this->loadTemplate('ftplogin'); ?> | ||||
| 				<?php echo JHtml::_('bootstrap.endTab'); ?> | ||||
| 			<?php endif; ?> | ||||
|  | ||||
| 			<?php echo JHtml::_('bootstrap.endTabSet'); ?> | ||||
|  | ||||
| 			<input type="hidden" name="task" value="" /> | ||||
| 			<?php echo JHtml::_('form.token'); ?> | ||||
| 		</div> | ||||
| 		<!-- End Content --> | ||||
| 	</div> | ||||
| </form> | ||||
| @ -0,0 +1,23 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| $this->name = JText::_('COM_CONFIG_CACHE_SETTINGS'); | ||||
| $this->fieldsname = 'cache'; | ||||
| if (isset($this->data['cache_handler']) | ||||
| 	&& $this->data['cache_handler'] == 'memcache' | ||||
| 	|| $this->data['session_handler'] == 'memcache' | ||||
| 	|| $this->data['cache_handler'] == 'memcached' | ||||
| 	|| $this->data['session_handler'] == 'memcached' | ||||
| ) | ||||
| { | ||||
| 	$this->fieldsname .= ',memcache'; | ||||
| } | ||||
| echo JLayoutHelper::render('joomla.content.options_default', $this); | ||||
| @ -0,0 +1,14 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| $this->name = JText::_('COM_CONFIG_COOKIE_SETTINGS'); | ||||
| $this->fieldsname = 'cookie'; | ||||
| echo JLayoutHelper::render('joomla.content.options_default', $this); | ||||
| @ -0,0 +1,14 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| $this->name = JText::_('COM_CONFIG_DATABASE_SETTINGS'); | ||||
| $this->fieldsname = 'database'; | ||||
| echo JLayoutHelper::render('joomla.content.options_default', $this); | ||||
| @ -0,0 +1,14 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| $this->name = JText::_('COM_CONFIG_DEBUG_SETTINGS'); | ||||
| $this->fieldsname = 'debug'; | ||||
| echo JLayoutHelper::render('joomla.content.options_default', $this); | ||||
| @ -0,0 +1,15 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| $this->name = JText::_('COM_CONFIG_TEXT_FILTER_SETTINGS'); | ||||
| $this->fieldsname = 'filters'; | ||||
| $this->description = JText::_('COM_CONFIG_TEXT_FILTERS_DESC'); | ||||
| echo JLayoutHelper::render('joomla.content.options_default', $this); | ||||
| @ -0,0 +1,14 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| $this->name = JText::_('COM_CONFIG_FTP_SETTINGS'); | ||||
| $this->fieldsname = 'ftp'; | ||||
| echo JLayoutHelper::render('joomla.content.options_default', $this); | ||||
| @ -0,0 +1,30 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
| ?> | ||||
| <fieldset title="<?php echo JText::_('COM_CONFIG_FTP_DETAILS'); ?>" class="form-horizontal"> | ||||
| 	<legend><?php echo JText::_('COM_CONFIG_FTP_DETAILS'); ?></legend> | ||||
| 	<?php echo JText::_('COM_CONFIG_FTP_DETAILS_TIP'); ?> | ||||
| 	<?php if ($this->ftp instanceof Exception) : ?> | ||||
| 		<p><?php echo JText::_($this->ftp->message); ?></p> | ||||
| 	<?php endif; ?> | ||||
| 	<div class="control-group"> | ||||
| 		<div class="control-label"><label for="username"><?php echo JText::_('JGLOBAL_USERNAME'); ?></label></div> | ||||
| 		<div class="controls"> | ||||
| 			<input type="text" id="username" name="username" class="input_box" size="70" value="" /> | ||||
| 		</div> | ||||
| 	</div> | ||||
| 	<div class="control-group"> | ||||
| 		<div class="control-label"><?php echo JText::_('JGLOBAL_PASSWORD'); ?></div> | ||||
| 		<div class="controls"> | ||||
| 			<input type="password" id="password" name="password" class="input_box" size="70" value="" /> | ||||
| 		</div> | ||||
| 	</div> | ||||
| </fieldset> | ||||
| @ -0,0 +1,14 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| $this->name = JText::_('COM_CONFIG_LOCATION_SETTINGS'); | ||||
| $this->fieldsname = 'locale'; | ||||
| echo JLayoutHelper::render('joomla.content.options_default', $this); | ||||
| @ -0,0 +1,14 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| $this->name = JText::_('COM_CONFIG_MAIL_SETTINGS'); | ||||
| $this->fieldsname = 'mail'; | ||||
| echo JLayoutHelper::render('joomla.content.options_default', $this); | ||||
| @ -0,0 +1,14 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| $this->name = JText::_('COM_CONFIG_METADATA_SETTINGS'); | ||||
| $this->fieldsname = 'metadata'; | ||||
| echo JLayoutHelper::render('joomla.content.options_default', $this); | ||||
| @ -0,0 +1,26 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
| ?> | ||||
| <ul class="nav nav-list"> | ||||
| 	<?php if ($this->userIsSuperAdmin): ?> | ||||
| 		<li class="nav-header"><?php echo JText::_('COM_CONFIG_SYSTEM'); ?></li> | ||||
| 		<li class="active"> | ||||
| 			<a href="index.php?option=com_config"><?php echo JText::_('COM_CONFIG_GLOBAL_CONFIGURATION'); ?></a> | ||||
| 		</li> | ||||
| 		<li class="divider"></li> | ||||
| 	<?php endif; ?> | ||||
| 	<li class="nav-header"><?php echo JText::_('COM_CONFIG_COMPONENT_FIELDSET_LABEL'); ?></li> | ||||
| 	<?php foreach ($this->components as $component) : ?> | ||||
| 		<li> | ||||
| 			<a href="index.php?option=com_config&view=component&component=<?php echo $component; ?>"><?php echo JText::_($component); ?></a> | ||||
| 		</li> | ||||
| 	<?php endforeach; ?> | ||||
| </ul> | ||||
| @ -0,0 +1,16 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| $this->name = JText::_('COM_CONFIG_PERMISSION_SETTINGS'); | ||||
| $this->fieldsname = 'permissions'; | ||||
| $this->formclass = 'form-vertical'; | ||||
| $this->showlabel = false; | ||||
| echo JLayoutHelper::render('joomla.content.options_default', $this); | ||||
| @ -0,0 +1,14 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| $this->name = JText::_('COM_CONFIG_SEO_SETTINGS'); | ||||
| $this->fieldsname = 'seo'; | ||||
| echo JLayoutHelper::render('joomla.content.options_default', $this); | ||||
| @ -0,0 +1,14 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| $this->name = JText::_('COM_CONFIG_SERVER_SETTINGS'); | ||||
| $this->fieldsname = 'server'; | ||||
| echo JLayoutHelper::render('joomla.content.options_default', $this); | ||||
| @ -0,0 +1,14 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| $this->name = JText::_('COM_CONFIG_SESSION_SETTINGS'); | ||||
| $this->fieldsname = 'session'; | ||||
| echo JLayoutHelper::render('joomla.content.options_default', $this); | ||||
| @ -0,0 +1,14 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| $this->name = JText::_('COM_CONFIG_SITE_SETTINGS'); | ||||
| $this->fieldsname = 'site'; | ||||
| echo JLayoutHelper::render('joomla.content.options_default', $this); | ||||
| @ -0,0 +1,14 @@ | ||||
| <?php | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_config | ||||
|  * | ||||
|  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| $this->name = JText::_('COM_CONFIG_SYSTEM_SETTINGS'); | ||||
| $this->fieldsname = 'system'; | ||||
| echo JLayoutHelper::render('joomla.content.options_default', $this); | ||||
| @ -0,0 +1 @@ | ||||
| <!DOCTYPE html><title></title> | ||||
		Reference in New Issue
	
	Block a user
	 alazhar
					alazhar