| [ Index ] |
PHP Cross Reference of Joomla 2.5.4 DE |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @package Joomla.Administrator 4 * @subpackage com_installer 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 * @since 1.6 8 */ 9 10 // no direct access 11 defined('_JEXEC') or die; 12 13 ?> 14 <fieldset id="filter-bar"> 15 <div class="filter-search fltlft"> 16 <?php foreach($this->form->getFieldSet('search') as $field): ?> 17 <?php if (!$field->hidden): ?> 18 <?php echo $field->label; ?> 19 <?php endif; ?> 20 <?php echo $field->input; ?> 21 <?php endforeach; ?> 22 </div> 23 <div class="filter-select fltrt"> 24 <?php foreach($this->form->getFieldSet('select') as $field): ?> 25 <?php if (!$field->hidden): ?> 26 <?php echo $field->label; ?> 27 <?php endif; ?> 28 <?php echo $field->input; ?> 29 <?php endforeach; ?> 30 </div> 31 </fieldset> 32 <div class="clr"></div>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Tue Apr 3 11:40:28 2012 | Cross-referenced by PHPXref 0.7.1 |