File Manager

Current Directory: /home/astoriaah/www/templates/yootheme_child/html/com_search/search
Viewing File: /home/astoriaah/www/templates/yootheme_child/html/com_search/search/default_form.php
<?php defined('_JEXEC') or die; JHtml::_('bootstrap.tooltip'); $lang = JFactory::getLanguage(); $limit = $lang->getUpperLimitSearchWord(); // Ordering $this->lists['ordering'] = JHtml::_('select.genericlist', [ JHtml::_('select.option', 'newest', JText::_('COM_SEARCH_NEWEST_FIRST')), JHtml::_('select.option', 'oldest', JText::_('COM_SEARCH_OLDEST_FIRST')), JHtml::_('select.option', 'popular', JText::_('COM_SEARCH_MOST_POPULAR')), JHtml::_('select.option', 'alpha', JText::_('COM_SEARCH_ALPHABETICAL')), JHtml::_('select.option', 'category', JText::_('JCATEGORY')), ], 'ordering', 'class="uk-select uk-form-width-medium"', 'value', 'text', $this->get('state')->get('ordering')); ?> <form id="searchForm" action="<?= JRoute::_('index.php?option=com_search') ?>" method="post"> <div class="uk-panel"> <fieldset class="uk-margin uk-fieldset"> <div class="uk-search uk-search-default"> <input id="search-searchword" class="uk-search-input" type="text" name="searchword" placeholder="<?= JText::_('COM_SEARCH_SEARCH_KEYWORD') ?>" size="30" maxlength="<?= $limit ?>" value="<?= $this->escape($this->origkeyword) ?>"> </div> <button class="uk-button uk-button-primary" name="Search" onclick="this.form.submit()" title="<?= JHtml::tooltipText('COM_SEARCH_SEARCH') ?>"><?= JHtml::tooltipText('COM_SEARCH_SEARCH') ?></button> <input type="hidden" name="task" value="search"> </fieldset> <fieldset class="uk-margin uk-fieldset"> <!-- todo text size --> <legend><?= JText::_('COM_SEARCH_FOR') ?></legend> <div class="uk-margin"> <!-- todo margin --> <?= $this->lists['searchphrase'] ?> </div> <div class="uk-margin"> <label class="uk-form-label" for="ordering"><?= JText::_('COM_SEARCH_ORDERING') ?></label> <?= $this->lists['ordering'] ?> </div> </fieldset> <?php if ($this->params->get('search_areas', 1)) : ?> <fieldset class="uk-margin uk-fieldset"> <legend><?= JText::_('COM_SEARCH_SEARCH_ONLY') ?></legend> <div class="uk-margin"> <?php foreach ($this->searchareas['search'] as $val => $txt) : $checked = is_array($this->searchareas['active']) && in_array($val, $this->searchareas['active']) ? 'checked="checked"' : ''; ?> <label for="area-<?= $val ?>"> <input type="checkbox" name="areas[]" value="<?= $val ?>" id="area-<?= $val ?>" <?= $checked ?> > <?= JText::_($txt) ?> </label><br> <?php endforeach ?> </div> </fieldset> <?php endif ?> </div> <!-- todo leeres div mit margin wird immer gerendert --> <div class="uk-flex uk-flex-middle uk-flex-between uk-margin-bottom" uk-margin> <?php if (!empty($this->searchword)) : ?> <div><?= JText::plural('COM_SEARCH_SEARCH_KEYWORD_N_RESULTS', '<span class="uk-badge uk-badge-info">'. $this->total. '</span>') ?></div> <?php endif ?> <?php if ($this->total > 0) : ?> <div> <label for="limit"><?= JText::_('JGLOBAL_DISPLAY_NUM') ?></label> <?= $this->pagination->getLimitBox() ?> </div> <?php endif ?> </div> </form>