File manager - Edit - /home/opticamezl/www/newok/administrator/components/com_rereplacer/tmpl/items/default.php
Back
<?php /** * @package ReReplacer * @version 14.4.1 * * @author Peter van Westen <info@regularlabs.com> * @link https://regularlabs.com * @copyright Copyright © 2025 Regular Labs All Rights Reserved * @license GNU General Public License version 2 or later */ defined('_JEXEC') or die; use Joomla\CMS\Factory as JFactory; use Joomla\CMS\HTML\HTMLHelper as JHtml; use Joomla\CMS\Language\Text as JText; use Joomla\CMS\Layout\LayoutHelper as JLayout; use Joomla\CMS\Router\Route as JRoute; use Joomla\CMS\Session\Session; use RegularLabs\Library\Document as RL_Document; use RegularLabs\Library\DownloadKey as RL_DownloadKey; use RegularLabs\Library\Form\Field\MiniColorField; use RegularLabs\Library\License as RL_License; use RegularLabs\Library\StringHelper as RL_String; use RegularLabs\Library\Version as RL_Version; RL_Document::style('regularlabs.admin-form'); $listOrder = RL_String::escape($this->state->get('list.ordering')); $listDirn = RL_String::escape($this->state->get('list.direction')); $ordering = ($listOrder == 'a.ordering'); $user = JFactory::getUser(); $canCreate = $user->authorise('core.create', 'com_rereplacer'); $canEdit = $user->authorise('core.edit', 'com_rereplacer'); $canChange = $user->authorise('core.edit.state', 'com_rereplacer'); $canCheckin = $user->authorise('core.manage', 'com_checkin'); $saveOrder = ($listOrder == 'a.ordering') && ! empty($this->items); if ($saveOrder) { $saveOrderingUrl = 'index.php?option=com_rereplacer&task=items.saveOrderAjax&tmpl=component&' . Session::getFormToken() . '=1'; JHtml::_('draggablelist.draggable'); } $showColors = $this->config->use_colors; $showCategories = ($this->hasCategories && $this->config->use_categories); $cols = 10; $cols += ($this->config->show_fields ? 2 : 0); $cols += ($showColors ? 1 : 0); $cols += ($showCategories ? 1 : 0); if ($this->config->show_update_notification) { // Version check echo RL_Version::getMessage('REREPLACER'); } ?> <form action="<?php echo JRoute::_('index.php?option=com_rereplacer&view=items'); ?>" method="post" name="adminForm" id="adminForm" enctype="multipart/form-data"> <?php // Search tools bar echo JLayout::render('joomla.searchtools.default', ['view' => $this]); ?> <table class="table table-striped" id="itemList"> <thead> <tr> <td scope="col" class="w-1 text-center d-none d-md-table-cell"> <?php echo JHtml::_('grid.checkall'); ?> </td> <th scope="col" class="w-1 text-center d-none d-md-table-cell"> <?php echo JHtml::_('searchtools.sort', '', 'a.ordering', $listDirn, $listOrder, null, 'asc', 'JGRID_HEADING_ORDERING', 'icon-sort'); ?> </th> <?php if ($showColors) : ?> <th scope="col" class="w-1 text-center d-none d-md-table-cell"> <?php echo JHtml::_('searchtools.sort', '', 'a.color', $listDirn, $listOrder); ?> </th> <?php endif; ?> <th scope="col" class="w-1 text-nowrap text-center"> <?php echo JHtml::_('searchtools.sort', 'JSTATUS', 'a.published', $listDirn, $listOrder); ?> </th> <th scope="col" class=""> <?php echo JHtml::_('searchtools.sort', 'JGLOBAL_TITLE', 'a.name', $listDirn, $listOrder); ?> </th> <th scope="col" class="d-none d-md-table-cell"> <?php echo JHtml::_('searchtools.sort', 'JGLOBAL_DESCRIPTION', 'a.description', $listDirn, $listOrder); ?> </th> <?php if ($this->config->show_fields) : ?> <th scope="col" class="w-10 title d-none d-md-table-cell"> <?php echo JHtml::_('searchtools.sort', 'RR_SEARCH', 'a.search', $listDirn, $listOrder); ?> </th> <th scope="col" class="w-10 title d-none d-md-table-cell"> <?php echo JHtml::_('searchtools.sort', 'RR_REPLACE', 'a.replace', $listDirn, $listOrder); ?> </th> <?php endif; ?> <?php if ($showCategories) : ?> <th scope="col" class="w-3 text-nowrap d-none d-md-table-cell"> <?php echo JHtml::_('searchtools.sort', 'JCATEGORY', 'a.category', $listDirn, $listOrder); ?> </th> <?php endif; ?> <th scope="col" class="w-3 text-nowrap text-center d-none d-md-table-cell"> <?php echo JText::_('RR_CASE'); ?> </th> <th scope="col" class="w-3 text-nowrap text-center d-none d-md-table-cell"> <?php echo JText::_('RR_REGEX'); ?> </th> <th scope="col" class="w-3 text-nowrap text-center d-none d-md-table-cell"> <?php echo JText::_('RR_ADMIN'); ?> </th> <th scope="col" class="w-3 text-nowrap d-none d-md-table-cell"> <?php echo JText::_('RR_AREA'); ?> </th> <th scope="col" class="w-1 text-nowrap text-center d-none d-md-table-cell"> <?php echo JHtml::_('searchtools.sort', 'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder); ?> </th> </tr> </thead> <tbody <?php if ($saveOrder) : ?> class="js-draggable" data-url="<?php echo $saveOrderingUrl; ?>" data-direction="<?php echo strtolower($listDirn); ?>" data-nested="false"<?php endif; ?>> <?php if (empty($this->items)): ?> <tr> <td colspan="<?php echo $cols; ?>"> <?php echo JText::_('RL_NO_ITEMS_FOUND'); ?> </td> </tr> <?php else: ?> <?php foreach ($this->items as $i => $item) : ?> <?php $canCheckinItem = ($canCheckin || $item->checked_out == 0 || $item->checked_out == $user->get('id')); $canChangeItem = ($canChange && $canCheckinItem); if ( ! empty($item->casesensitive)) { $case = '<span class=" " rel="tooltip" title="' . JText::_('RR_CASE_SENSITIVE') . '"><span class="icon-publish text-success" aria-hidden="true"></span></span>'; } else { $case = '<span class="disabled" rel="tooltip" title="' . JText::_('RL_NOT') . ' ' . JText::_('RR_CASE_SENSITIVE') . '"><span class="icon-cancel" aria-hidden="true"></span></span>'; } if ( ! empty($item->regex)) { $regex = '<span class="" rel="tooltip" title="' . JText::_('RR_REGULAR_EXPRESSIONS') . '"><span class="icon-publish text-success" aria-hidden="true"></span></span>'; } else { $regex = '<span class="disabled" rel="tooltip" title="' . JText::_('RL_NOT') . ' ' . JText::_('RR_REGULAR_EXPRESSIONS') . '"><span class="icon-cancel" aria-hidden="true"></span></span>'; } if ( ! empty($item->enable_in_admin)) { $enable_in_admin = '<span class="" rel="tooltip" title="' . JText::_('RR_ENABLE_IN_ADMIN') . '"><span class="icon-publish text-success" aria-hidden="true"></span></span>'; } else { $enable_in_admin = '<span class="disabled" rel="tooltip" title="' . JText::_('RL_NOT') . ' ' . JText::_('RR_ENABLE_IN_ADMIN') . '"><span class="icon-cancel" aria-hidden="true"></span></span>'; } $description = explode('---', $item->description); $area_name = $item->area == 'articles' ? 'CONTENT' : strtoupper($item->area); $area = JText::_('RR_AREA_' . $area_name . '_SHORT'); $area_tip = JText::_('RR_AREA_' . $area_name); ?> <tr class="row<?php echo $i % 2; ?>" data-draggable-group="<?php echo $item->area; ?>"> <td class="text-center d-none d-md-table-cell"> <?php echo JHtml::_('grid.id', $i, $item->id); ?> </td> <td class="order text-nowrap text-center d-none d-md-table-cell d-none d-md-table-cell"> <?php $iconClass = ''; if ( ! $canChange) { $iconClass = ' inactive'; } elseif ( ! $saveOrder) { $iconClass = ' inactive" title="' . JText::_('JORDERINGDISABLED'); } ?> <span class="sortable-handler<?php echo $iconClass ?>"> <span class="icon-ellipsis-v" aria-hidden="true"></span> </span> <?php if ($canChange && $saveOrder) : ?> <input type="text" class="hidden" name="order[]" size="5" value="<?php echo $item->ordering; ?>"> <?php endif; ?> </td> <?php if ($showColors) : ?> <td class="center inlist"> <?php $colorfield = new MiniColorField; $color = $item->color ?? ''; $element = new SimpleXMLElement( '<field id="color_' . $i . '" name="color_' . $i . '" type="MiniColor" default="" colors="' . ($this->config->main_colors ?? '') . '" table="rereplacer" item_id="' . $item->id . '" />' ); $element->value = $color; $colorfield->setup($element, $color); echo $colorfield->__get('input'); ?> </td> <?php endif; ?> <td class="text-center"> <?php echo JHtml::_('jgrid.published', $item->published, $i, 'items.', $canChangeItem); ?> </td> <td> <?php if ($item->checked_out) : ?> <?php echo JHtml::_('jgrid.checkedout', $i, $item->editor, $item->checked_out_time, 'items.', $canCheckin); ?> <?php endif; ?> <?php if ($canEdit) : ?> <a href="<?php echo JRoute::_('index.php?option=com_rereplacer&task=item.edit&id=' . $item->id); ?>"> <?php echo RL_String::escape($item->name); ?></a> <?php else : ?> <?php echo RL_String::escape($item->name); ?> <?php endif; ?> </td> <td class="d-none d-md-table-cell"> <span><?php echo nl2br(RL_String::escape(trim($description[0]))); ?></span> <?php if ( ! empty($description[1])) : ?> <div role="tooltip"><?php echo nl2br(RL_String::escape(trim($description[1]))); ?></div> <?php endif; ?> </td> <?php if ($this->config->show_fields) : ?> <?php if ($item->use_xml) : ?> <td class="d-none d-md-table-cell" colspan="2"> <em>(<?php echo RL_String::escape(JText::_('RR_USES_XML_FILE')); ?>)</em> </td> <?php else : ?> <td class="d-none d-md-table-cell"> <span><?php echo RL_String::escape(RL_String::truncate(trim($item->search), 60)); ?></span> <?php if (RL_String::strlen(trim($item->search)) > 60) : ?> <div role="tooltip"> <strong><?php echo JText::_('RR_SEARCH'); ?></strong><br> <?php echo $item->search; ?> </div> <?php endif; ?> </td> <td class="d-none d-md-table-cell"> <span><?php echo RL_String::escape(RL_String::truncate(trim($item->replace), 60)); ?></span> <?php if (RL_String::strlen(trim($item->replace)) > 60) : ?> <div role="tooltip"> <strong><?php echo JText::_('RR_REPLACE'); ?></strong><br> <?php echo $item->replace; ?> </div> <?php endif; ?> </td> <?php endif; ?> <?php endif; ?> <?php if ($showCategories) : ?> <td class="d-none d-md-table-cell"> <?php $category = $item->category; $category_icon = ''; if (str_contains($category, '::')) { [$category, $category_icon] = explode('::', $category, 2); $category_icon = '<span class="icon-' . $category_icon . '"></span>'; } echo $category ? '<span class="badge rl-bg-teal">' . $category_icon . $category . '</span>' : ''; ?> </td> <?php endif; ?> <td class="text-center d-none d-md-table-cell"> <?php echo $case; ?> </td> <td class="text-center d-none d-md-table-cell"> <?php echo $regex; ?> </td> <td class="text-center d-none d-md-table-cell"> <?php echo $enable_in_admin; ?> </td> <td class="d-none d-md-table-cell"> <span rel="tooltip" title="<?php echo $area_tip; ?>"><?php echo $area; ?></span> </td> <td class="text-center d-none d-md-table-cell"> <?php echo (int) $item->id; ?> </td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody> </table> <?php // load the pagination. ?> <?php echo $this->pagination->getListFooter(); ?> <?php if ($canCreate) : ?> <?php echo JHtml::_( 'bootstrap.renderModal', 'importModal', [ 'title' => JText::_('RL_IMPORT_ITEMS'), 'footer' => $this->loadTemplate('import_footer'), ], $this->loadTemplate('import_body') ); ?> <?php endif; ?> <input type="hidden" name="task" value=""> <input type="hidden" name="boxchecked" value="0"> <?php echo JHtml::_('form.token'); ?> </form> <?php // PRO Check echo RL_License::getMessage('REREPLACER'); // Copyright echo RL_Version::getFooter('REREPLACER');
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0 |
proxy
|
phpinfo
|
Settings