/administrator/components/com_config/views/application/tmpl/default_locale.php

https://bitbucket.org/kraymitchell/fcd · PHP · 26 lines · 18 code · 1 blank · 7 comment · 0 complexity · fe564ab470c75cc9324bca1698038ba0 MD5 · raw file

  1. <?php
  2. /**
  3. * @package Joomla.Administrator
  4. * @subpackage com_config
  5. * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
  6. * @license GNU General Public License version 2 or later; see LICENSE.txt
  7. */
  8. // No direct access
  9. defined('_JEXEC') or die;
  10. ?>
  11. <div class="width-100">
  12. <fieldset class="adminform">
  13. <legend><?php echo JText::_('COM_CONFIG_LOCATION_SETTINGS'); ?></legend>
  14. <ul class="adminformlist">
  15. <?php
  16. foreach ($this->form->getFieldset('locale') as $field):
  17. ?>
  18. <li><?php echo $field->label; ?>
  19. <?php echo $field->input; ?></li>
  20. <?php
  21. endforeach;
  22. ?>
  23. </ul>
  24. </fieldset>
  25. </div>