177 lines
		
	
	
		
			9.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			177 lines
		
	
	
		
			9.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * @package     Joomla.Administrator
 | |
|  * @subpackage  com_finder
 | |
|  *
 | |
|  * @copyright   (C) 2011 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\Factory;
 | |
| use Joomla\CMS\HTML\HTMLHelper;
 | |
| use Joomla\CMS\Language\Multilanguage;
 | |
| use Joomla\CMS\Language\Text;
 | |
| use Joomla\CMS\Layout\LayoutHelper;
 | |
| use Joomla\CMS\Router\Route;
 | |
| use Joomla\Component\Finder\Administrator\Helper\LanguageHelper;
 | |
| 
 | |
| /** @var \Joomla\Component\Finder\Administrator\View\Maps\HtmlView $this */
 | |
| 
 | |
| $listOrder     = $this->escape($this->state->get('list.ordering'));
 | |
| $listDirn      = $this->escape($this->state->get('list.direction'));
 | |
| $lang          = Factory::getLanguage();
 | |
| $branchFilter  = $this->escape($this->state->get('filter.branch'));
 | |
| 
 | |
| Text::script('COM_FINDER_MAPS_CONFIRM_DELETE_PROMPT');
 | |
| 
 | |
| /** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
 | |
| $wa = $this->getDocument()->getWebAssetManager();
 | |
| $wa->useScript('com_finder.maps')
 | |
|     ->useScript('table.columns')
 | |
|     ->useScript('multiselect');
 | |
| 
 | |
| ?>
 | |
| <form action="<?php echo Route::_('index.php?option=com_finder&view=maps'); ?>" 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]); ?>
 | |
|                 <?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::_('COM_FINDER_MAPS_NO_CONTENT'); ?>
 | |
|                     </div>
 | |
|                 <?php else : ?>
 | |
|                 <table class="table">
 | |
|                     <caption class="visually-hidden">
 | |
|                         <?php echo Text::_('COM_FINDER_MAPS_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>
 | |
|                             <td class="w-1 text-center">
 | |
|                                 <?php echo HTMLHelper::_('grid.checkall'); ?>
 | |
|                             </td>
 | |
|                             <th scope="col" class="w-1 text-center">
 | |
|                                 <?php echo HTMLHelper::_('searchtools.sort', 'JSTATUS', 'a.state', $listDirn, $listOrder); ?>
 | |
|                             </th>
 | |
|                             <th scope="col">
 | |
|                                 <?php echo HTMLHelper::_('searchtools.sort', 'JGLOBAL_TITLE', 'branch_title, a.lft', $listDirn, $listOrder); ?>
 | |
|                             </th>
 | |
|                             <?php if (!$branchFilter) : ?>
 | |
|                                 <th scope="col" class="w-1 text-center">
 | |
|                                     <?php echo Text::_('COM_FINDER_HEADING_CHILDREN'); ?>
 | |
|                                 </th>
 | |
|                             <?php endif; ?>
 | |
|                             <th scope="col" class="w-1 text-center">
 | |
|                                 <span class="icon-check" aria-hidden="true"></span>
 | |
|                                 <span class="d-none d-md-inline"><?php echo Text::_('COM_FINDER_MAPS_COUNT_PUBLISHED_ITEMS'); ?></span>
 | |
|                             </th>
 | |
|                             <th scope="col" class="w-1 text-center">
 | |
|                                 <span class="icon-times" aria-hidden="true"></span>
 | |
|                                 <span class="d-none d-md-inline"><?php echo Text::_('COM_FINDER_MAPS_COUNT_UNPUBLISHED_ITEMS'); ?></span>
 | |
|                             </th>
 | |
|                             <?php if (Multilanguage::isEnabled()) : ?>
 | |
|                                 <th scope="col" class="w-10 nowrap d-none d-md-table-cell">
 | |
|                                     <?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_LANGUAGE', 'a.language', $listDirn, $listOrder); ?>
 | |
|                                 </th>
 | |
|                             <?php endif; ?>
 | |
|                         </tr>
 | |
|                     </thead>
 | |
|                     <tbody>
 | |
|                         <?php $canChange = $this->getCurrentUser()->authorise('core.manage', 'com_finder'); ?>
 | |
|                         <?php foreach ($this->items as $i => $item) : ?>
 | |
|                         <tr class="row<?php echo $i % 2; ?>">
 | |
|                             <td class="text-center">
 | |
|                                 <?php echo HTMLHelper::_('grid.id', $i, $item->id, false, 'cid', 'cb', $item->title); ?>
 | |
|                             </td>
 | |
|                             <td class="text-center">
 | |
|                                 <?php echo HTMLHelper::_('jgrid.published', $item->state, $i, 'maps.', $canChange, 'cb'); ?>
 | |
|                             </td>
 | |
|                             <th scope="row">
 | |
|                                 <?php
 | |
|                                 if (trim($item->branch_title, '*') === 'Language') {
 | |
|                                     $title = LanguageHelper::branchLanguageTitle($item->title);
 | |
|                                 } else {
 | |
|                                     $key = LanguageHelper::branchSingular($item->title);
 | |
|                                     $title = $lang->hasKey($key) ? Text::_($key) : $item->title;
 | |
|                                 }
 | |
|                                 ?>
 | |
|                                 <?php echo str_repeat('<span class="gi">—</span>', $item->level - 1); ?>
 | |
|                                 <?php echo $this->escape($title); ?>
 | |
|                                 <?php if ($this->escape(trim($title, '*')) === 'Language' && Multilanguage::isEnabled()) : ?>
 | |
|                                 <div class="small">
 | |
|                                     <strong><?php echo Text::_('COM_FINDER_MAPS_MULTILANG'); ?></strong>
 | |
|                                 </div>
 | |
|                                 <?php endif; ?>
 | |
|                             </th>
 | |
|                             <?php if (!$branchFilter) : ?>
 | |
|                             <td class="text-center btns itemnumber">
 | |
|                                 <?php if ($item->rgt - $item->lft > 1) : ?>
 | |
|                                 <a href="<?php echo Route::_('index.php?option=com_finder&view=maps&filter[branch]=' . $item->id); ?>"
 | |
|                                     aria-describedby="tip-map<?php echo $i; ?>">
 | |
|                                     <span class="btn btn-primary"><?php echo floor(($item->rgt - $item->lft) / 2); ?></span>
 | |
|                                 </a>
 | |
|                                 <div role="tooltip" id="tip-map<?php echo $i; ?>">
 | |
|                                     <?php echo Text::_('COM_FINDER_HEADING_CHILDREN'); ?>
 | |
|                                 </div>
 | |
|                                 <?php else : ?>
 | |
|                                 -
 | |
|                                 <?php endif; ?>
 | |
|                             </td>
 | |
|                             <?php endif; ?>
 | |
|                             <td class="text-center btns itemnumber">
 | |
|                             <?php if ($item->level > 1) : ?>
 | |
|                                 <a class="btn <?php echo ((int) $item->count_published > 0) ? 'btn-success' : 'btn-secondary'; ?>"
 | |
|                                     href="<?php echo Route::_('index.php?option=com_finder&view=index&filter[state]=1&filter[content_map]=' . $item->id); ?>"
 | |
|                                     aria-describedby="tip-publish<?php echo $i; ?>">
 | |
|                                     <?php echo (int) $item->count_published; ?>
 | |
|                                 </a>
 | |
|                                 <div role="tooltip" id="tip-publish<?php echo $i; ?>">
 | |
|                                     <?php echo Text::_('COM_FINDER_MAPS_COUNT_PUBLISHED_ITEMS'); ?>
 | |
|                                 </div>
 | |
|                             <?php else : ?>
 | |
|                                 -
 | |
|                             <?php endif; ?>
 | |
|                             </td>
 | |
|                             <td class="text-center btns itemnumber">
 | |
|                             <?php if ($item->level > 1) : ?>
 | |
|                                 <a class="btn <?php echo ((int) $item->count_unpublished > 0) ? 'btn-danger' : 'btn-secondary'; ?>"
 | |
|                                     href="<?php echo Route::_('index.php?option=com_finder&view=index&filter[state]=0&filter[content_map]=' . $item->id); ?>"
 | |
|                                     aria-describedby="tip-unpublish<?php echo $i; ?>">
 | |
|                                     <?php echo (int) $item->count_unpublished; ?>
 | |
|                                 </a>
 | |
|                                 <div role="tooltip" id="tip-unpublish<?php echo $i; ?>">
 | |
|                                     <?php echo Text::_('COM_FINDER_MAPS_COUNT_UNPUBLISHED_ITEMS'); ?>
 | |
|                                 </div>
 | |
|                             <?php else : ?>
 | |
|                                 -
 | |
|                             <?php endif; ?>
 | |
|                             </td>
 | |
|                             <?php if (Multilanguage::isEnabled()) : ?>
 | |
|                                 <td class="small d-none d-md-table-cell">
 | |
|                                     <?php echo $item->language; ?>
 | |
|                                 </td>
 | |
|                             <?php endif; ?>
 | |
|                         </tr>
 | |
|                         <?php endforeach; ?>
 | |
|                     </tbody>
 | |
|                 </table>
 | |
| 
 | |
|                     <?php // load the pagination. ?>
 | |
|                     <?php echo $this->pagination->getListFooter(); ?>
 | |
| 
 | |
|                 <?php endif; ?>
 | |
|             </div>
 | |
| 
 | |
|             <input type="hidden" name="task" value="display">
 | |
|             <input type="hidden" name="boxchecked" value="0">
 | |
|             <?php echo HTMLHelper::_('form.token'); ?>
 | |
|         </div>
 | |
|     </div>
 | |
| </form>
 |