[ Index ]

PHP Cross Reference of Joomla 2.5.4 DE

title

Body

[close]

/administrator/components/com_config/views/application/tmpl/ -> default_cache.php (source)

   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  
   9  // No direct access
  10  defined('_JEXEC') or die;
  11  ?>
  12  <div class="width-100">
  13  
  14  <fieldset class="adminform">
  15      <legend><?php echo JText::_('COM_CONFIG_CACHE_SETTINGS'); ?></legend>
  16      <ul class="adminformlist">
  17              <?php
  18              foreach ($this->form->getFieldset('cache') as $field):
  19              ?>
  20                      <li><?php echo $field->label; ?>
  21                      <?php echo $field->input; ?></li>
  22              <?php
  23              endforeach;
  24              ?>
  25          <?php if (isset($this->data['cache_handler']) && $this->data['cache_handler'] == 'memcache' || $this->data['session_handler'] == 'memcache') : ?>
  26  
  27                      <?php
  28              foreach ($this->form->getFieldset('memcache') as $mfield):
  29              ?>
  30                      <li><?php echo $mfield->label; ?>
  31                      <?php echo $mfield->input; ?></li>
  32              <?php
  33              endforeach;
  34              ?>
  35          <?php endif; ?>
  36          </ul>
  37  
  38  </fieldset>
  39  </div>


Generated: Tue Apr 3 11:40:28 2012 Cross-referenced by PHPXref 0.7.1