Current Path :
/
home
/
develito
/
.trash
/
v6
/
components
/
com_tags
/
tmpl
/
tags
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/.trash/v6/components/com_tags/tmpl/tags/default_items.php
<?php /** * @package Joomla.Site * @subpackage com_tags * * @copyright (C) 2013 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\Router\Route; use Joomla\CMS\Uri\Uri; use Joomla\Component\Tags\Site\Helper\RouteHelper; /** @var \Joomla\Component\Tags\Site\View\Tags\HtmlView $this */ /** @var Joomla\CMS\WebAsset\WebAssetManager $wa */ $wa = $this->getDocument()->getWebAssetManager(); $wa->useScript('com_tags.tags-default'); // Get the user object. $user = $this->getCurrentUser(); // Check if user is allowed to add/edit based on tags permissions. $canEdit = $user->authorise('core.edit', 'com_tags'); $canCreate = $user->authorise('core.create', 'com_tags'); $canEditState = $user->authorise('core.edit.state', 'com_tags'); $columns = $this->params->get('tag_columns', 1); // Avoid division by 0 and negative columns. if ($columns < 1) { $columns = 1; } $bsspans = floor(12 / $columns); if ($bsspans < 1) { $bsspans = 1; } $bscolumns = min($columns, floor(12 / $bsspans)); $n = count($this->items); ?> <div class="com-tags__items"> <form action="<?php echo htmlspecialchars(Uri::getInstance()->toString()); ?>" method="post" name="adminForm" id="adminForm"> <?php if ($this->params->get('filter_field') || $this->params->get('show_pagination_limit')) : ?> <?php if ($this->params->get('filter_field')) : ?> <div class="com-tags-tags__filter btn-group"> <label class="filter-search-lbl visually-hidden" for="filter-search"> <?php echo Text::_('COM_TAGS_TITLE_FILTER_LABEL'); ?> </label> <input type="text" name="filter-search" id="filter-search" value="<?php echo $this->escape($this->state->get('list.filter')); ?>" class="inputbox" onchange="document.adminForm.submit();" placeholder="<?php echo Text::_('COM_TAGS_TITLE_FILTER_LABEL'); ?>" > <button type="submit" name="filter_submit" class="btn btn-primary"><?php echo Text::_('JGLOBAL_FILTER_BUTTON'); ?></button> <button type="reset" name="filter-clear-button" class="btn btn-secondary"><?php echo Text::_('JSEARCH_FILTER_CLEAR'); ?></button> </div> <?php endif; ?> <?php if ($this->params->get('show_pagination_limit')) : ?> <div class="btn-group float-end"> <label for="limit" class="visually-hidden"> <?php echo Text::_('JGLOBAL_DISPLAY_NUM'); ?> </label> <?php echo $this->pagination->getLimitBox(); ?> </div> <?php endif; ?> <input type="hidden" name="limitstart" value=""> <input type="hidden" name="task" value=""> <?php endif; ?> </form> <?php if (!$this->items || $n === 0) : ?> <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_TAGS_NO_TAGS'); ?> </div> <?php else : ?> <?php foreach ($this->items as $i => $item) : ?> <?php if ($n === 1 || $i === 0 || $bscolumns === 1 || $i % $bscolumns === 0) : ?> <ul class="com-tags__category category list-group"> <?php endif; ?> <li class="list-group-item list-group-item-action"> <?php if ((!empty($item->access)) && in_array($item->access, $this->user->getAuthorisedViewLevels())) : ?> <h3 class="mb-0"> <a href="<?php echo Route::_(RouteHelper::getComponentTagRoute($item->id . ':' . $item->alias, $item->language)); ?>"> <?php echo $this->escape($item->title); ?> </a> </h3> <?php endif; ?> <?php if ($this->params->get('all_tags_show_tag_image') && !empty($item->images)) : ?> <?php $images = json_decode($item->images); ?> <span class="tag-body"> <?php if (!empty($images->image_intro)) : ?> <?php $imgfloat = empty($images->float_intro) ? $this->params->get('float_intro') : $images->float_intro; ?> <div class="float-<?php echo htmlspecialchars($imgfloat, ENT_QUOTES, 'UTF-8'); ?> item-image"> <?php $imageOptions = []; ?> <?php if ($images->image_intro_caption) : ?> <?php $imageOptions['title'] = $images->image_intro_caption; ?> <?php $imageOptions['class'] = 'caption'; ?> <?php endif; ?> <?php echo HTMLHelper::_('image', $images->image_intro, $images->image_intro_alt, $imageOptions); ?> </div> <?php endif; ?> </span> <?php endif; ?> <?php if (($this->params->get('all_tags_show_tag_description', 1) && !empty($item->description)) || $this->params->get('all_tags_show_tag_hits')) : ?> <div class="caption"> <?php if ($this->params->get('all_tags_show_tag_description', 1) && !empty($item->description)) : ?> <span class="tag-body"> <?php echo HTMLHelper::_('string.truncate', $item->description, $this->params->get('all_tags_tag_maximum_characters')); ?> </span> <?php endif; ?> <?php if ($this->params->get('all_tags_show_tag_hits')) : ?> <span class="list-hits badge bg-info"> <?php echo Text::sprintf('JGLOBAL_HITS_COUNT', $item->hits); ?> </span> <?php endif; ?> </div> <?php endif; ?> </li> <?php if (($i === 0 && $n === 1) || $i === $n - 1 || $bscolumns === 1 || (($i + 1) % $bscolumns === 0)) : ?> </ul> <?php endif; ?> <?php endforeach; ?> <?php endif; ?> <?php // Add pagination links ?> <?php if (!empty($this->items)) : ?> <?php if (($this->params->def('show_pagination', 2) == 1 || ($this->params->get('show_pagination') == 2)) && ($this->pagination->pagesTotal > 1)) : ?> <div class="com-tags__pagination w-100"> <?php if ($this->params->def('show_pagination_results', 1)) : ?> <p class="counter float-end pt-3 pe-2"> <?php echo $this->pagination->getPagesCounter(); ?> </p> <?php endif; ?> <?php echo $this->pagination->getPagesLinks(); ?> </div> <?php endif; ?> <?php endif; ?> </div>