86 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * @package     Joomla.Administrator
 | |
|  * @subpackage  com_finder
 | |
|  *
 | |
|  * @copyright   (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
 | |
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt
 | |
|  */
 | |
| 
 | |
| defined('_JEXEC') or die;
 | |
| 
 | |
| use Joomla\CMS\HTML\HTMLHelper;
 | |
| use Joomla\CMS\Language\Text;
 | |
| use Joomla\CMS\Layout\LayoutHelper;
 | |
| use Joomla\CMS\Router\Route;
 | |
| 
 | |
| /** @var \Joomla\Component\Finder\Administrator\View\Searches\HtmlView $this */
 | |
| 
 | |
| /** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
 | |
| $wa = $this->getDocument()->getWebAssetManager();
 | |
| $wa->useScript('multiselect');
 | |
| 
 | |
| $listOrder = $this->escape($this->state->get('list.ordering'));
 | |
| $listDirn = $this->escape($this->state->get('list.direction'));
 | |
| 
 | |
| ?>
 | |
| <form action="<?php echo Route::_('index.php?option=com_finder&view=searches'); ?>" method="post" name="adminForm" id="adminForm">
 | |
|     <div class="row">
 | |
|         <div class="col-md-12">
 | |
|             <div id="j-main-container" class="j-main-container">
 | |
|                 <?php echo LayoutHelper::render('joomla.searchtools.default', ['view' => $this, 'options' => ['filterButton' => false]]); ?>
 | |
|                 <?php if (empty($this->items)) : ?>
 | |
|                     <div class="alert alert-info">
 | |
|                         <span class="icon-info-circle" aria-hidden="true"></span><span class="visually-hidden"><?php echo Text::_('INFO'); ?></span>
 | |
|                         <?php echo Text::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
 | |
|                     </div>
 | |
|                 <?php else : ?>
 | |
|                 <table class="table">
 | |
|                     <caption class="visually-hidden">
 | |
|                         <?php echo Text::_('COM_FINDER_SEARCHES_TABLE_CAPTION'); ?>,
 | |
|                             <span id="orderedBy"><?php echo Text::_('JGLOBAL_SORTED_BY'); ?> </span>,
 | |
|                             <span id="filteredBy"><?php echo Text::_('JGLOBAL_FILTERED_BY'); ?></span>
 | |
|                     </caption>
 | |
|                     <thead>
 | |
|                         <tr>
 | |
|                             <th scope="col">
 | |
|                                 <?php echo HTMLHelper::_('searchtools.sort', 'COM_FINDER_HEADING_PHRASE', 'a.searchterm', $listDirn, $listOrder); ?>
 | |
|                             </th>
 | |
|                             <th scope="col" class="w-15">
 | |
|                                 <?php echo HTMLHelper::_('searchtools.sort', 'JGLOBAL_HITS', 'a.hits', $listDirn, $listOrder); ?>
 | |
|                             </th>
 | |
|                             <th scope="col" class="w-1 text-center">
 | |
|                                 <?php echo Text::_('COM_FINDER_HEADING_RESULTS'); ?>
 | |
|                             </th>
 | |
|                         </tr>
 | |
|                     </thead>
 | |
|                     <tbody>
 | |
|                     <?php foreach ($this->items as $i => $item) : ?>
 | |
|                         <tr class="row<?php echo $i % 2; ?>">
 | |
|                             <th scope="row" class="break-word">
 | |
|                                 <?php echo $this->escape($item->searchterm); ?>
 | |
|                             </th>
 | |
|                             <td>
 | |
|                                 <?php echo (int) $item->hits; ?>
 | |
|                             </td>
 | |
|                             <td class="text-center btns">
 | |
|                                 <?php echo (int) $item->results; ?>
 | |
|                             </td>
 | |
|                         </tr>
 | |
|                     <?php endforeach; ?>
 | |
|                     </tbody>
 | |
|                 </table>
 | |
| 
 | |
|                     <?php // load the pagination. ?>
 | |
|                     <?php echo $this->pagination->getListFooter(); ?>
 | |
| 
 | |
|                 <?php endif; ?>
 | |
|                 <input type="hidden" name="task" value="">
 | |
|                 <input type="hidden" name="boxchecked" value="0">
 | |
|                 <?php echo HTMLHelper::_('form.token'); ?>
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
| </form>
 |