Файловый менеджер - Редактировать - /home/lmsyaran/public_html/joomla5/administrator/components/com_fabrik/views/elements/tmpl/bootstrap.php
Назад
<?php /** * Admin Elements List Tmpl * * @package Joomla.Administrator * @subpackage Fabrik * @copyright Copyright (C) 2005-2020 Media A-Team, Inc. - All rights reserved. * @license GNU/GPL http://www.gnu.org/copyleft/gpl.html * @since 3.0 */ // No direct access defined('_JEXEC') or die('Restricted access'); use Joomla\CMS\Component\ComponentHelper; use Joomla\CMS\Factory; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Layout\LayoutHelper; use Joomla\CMS\Router\Route; HTMLHelper::addIncludePath(JPATH_COMPONENT . '/helpers/html'); HTMLHelper::_('bootstrap.tooltip'); //HTMLHelper::_('script', 'system/multiselect.js', false, true); //HTMLHelper::_('script','system/multiselect.js', ['relative' => true]); $wa = $this->document->getWebAssetManager(); $wa->useScript('table.columns') ->useScript('multiselect'); $config = ComponentHelper::getParams('com_fabrik'); $truncateOpts = array( 'chars' => true, 'html' => false, 'wordcount' => (int)$config->get('fabrik_truncate_length', 0), 'tip' =>false ); $user = Factory::getUser(); $userId = $user->get('id'); $listOrder = $this->state->get('list.ordering', 'e.id'); $listDirn = $this->state->get('list.direction', 'asc'); $saveOrder = $listOrder == 'e.ordering'; if ($saveOrder) { $saveOrderingUrl = 'index.php?option=com_fabrik&task=elements.saveOrderAjax&tmpl=component'; HTMLHelper::_('sortablelist.sortable', 'elementList', 'adminForm', strtolower($listDirn), $saveOrderingUrl); } $states = array( 1 => array( 'hideFromListView', 'COM_FABRIK_SHOW_IN_LIST', 'COM_FABRIK_REMOVE_FROM_LIST_VIEW', 'COM_FABRIK_SHOW_IN_LIST', false, 'publish', 'publish' ), 0 => array( 'showInListView', 'COM_FABRIK_REMOVE_FROM_LIST_VIEW', 'COM_FABRIK_SHOW_IN_LIST', 'COM_FABRIK_REMOVE_FROM_LIST_VIEW', false, 'unpublish', 'unpublish' ), ); ?> <form action="<?= Route::_('index.php?option=com_fabrik&view=elements'); ?>" method="post" name="adminForm" id="adminForm"> <div class="row"> <div class="col-sm-12"> <div id="j-main-container" class="j-main-container"> <?= LayoutHelper::render('joomla.searchtools.default', array('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"><?= Text::_('INFO'); ?></span> <?= Text::_('JGLOBAL_NO_MATCHING_RESULTS'); ?> </div> <?php else : ?> <table class="table table-striped" id="elementList"> <thead> <tr> <td class="w-1 text-center"> <?= HTMLHelper::_('grid.checkall'); ?> </td> <th scope="col" class="w-1 d-none d-md-table-cell"> <?= HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_ID', 'e.id', $listDirn, $listOrder); ?> </th> <th scope="col" class="w-3 d-none d-md-table-cell"> <?= HTMLHelper::_('searchtools.sort', '', 'e.ordering', $listDirn, $listOrder); ?> </th> <th scope="col" class="w-3 d-none d-md-table-cell"> <?= Text::_('COM_FABRIK_LINK');?> </th> <th scope="col" class="w-8 d-none d-md-table-cell"> <?= HTMLHelper::_('searchtools.sort', 'COM_FABRIK_NAME', 'e.name', $listDirn, $listOrder); ?> </th> <th scope="col" class="w-8 d-none d-md-table-cell"> <?= HTMLHelper::_('searchtools.sort', 'COM_FABRIK_LABEL', 'e.label', $listDirn, $listOrder); ?> </th> <th scope="col" class="w-8 d-none d-md-table-cell"> <?= Text::_('COM_FABRIK_FULL_ELEMENT_NAME');?> </th> <th scope="col" class="w-3 d-none d-md-table-cell"> <?= Text::_('COM_FABRIK_VALIDATIONS'); ?> </th> <th scope="col" class="w-8 d-none d-md-table-cell"> <?= HTMLHelper::_('searchtools.sort', 'COM_FABRIK_GROUP', 'g.name', $listDirn, $listOrder); ?> </th> <th scope="col" class="w-8 d-none d-md-table-cell"> <?= HTMLHelper::_('searchtools.sort', 'COM_FABRIK_PLUGIN', 'e.plugin', $listDirn, $listOrder); ?> </th> <th scope="col"class="w-3 d-none d-md-table-cell"> <?= HTMLHelper::_('searchtools.sort', 'COM_FABRIK_SHOW_IN_LIST', 'e.show_in_list_summary', $listDirn, $listOrder); ?> </th> <th scope="col"class="w-3 d-none d-md-table-cell"> <?= HTMLHelper::_('searchtools.sort', 'JPUBLISHED', 'e.published', $listDirn, $listOrder); ?> </th> </tr> </thead> <tfoot> <tr> <td colspan="12"> <?= $this->pagination->getListFooter(); ?> </td> </tr> </tfoot> <tbody> <?php foreach ($this->items as $i => $item) : $ordering = ($listOrder == 'e.ordering'); $link = Route::_('index.php?option=com_fabrik&task=element.edit&id='.(int) $item->id); $canCreate = $user->authorise('core.create', 'com_fabrik.element.'.$item->group_id); $canEdit = $user->authorise('core.edit', 'com_fabrik.element.'.$item->group_id); $canCheckin = $user->authorise('core.manage', 'com_checkin') || $item->checked_out==$user->get('id') || $item->checked_out==0; $canChange = $user->authorise('core.edit.state', 'com_fabrik.element.'.$item->group_id) && $canCheckin; $extraTip = '<strong>' . $item->numValidations . ' ' . Text::_('COM_FABRIK_VALIDATIONS') . '</strong><br />' . implode('<br />', $item->validationTip) . '<br/><br/><strong>' . $item->numJs . ' ' . Text::_('COM_FABRIK_JAVASCRIPT') . '</strong>'; ?> <tr class="row<?= $i % 2; ?>"> <td> <?= HTMLHelper::_('grid.id', $i, $item->id); ?> </td> <td> <?= $item->id; ?> </td> <td> <?php if ($canChange) : $disableClassName = ''; $disabledLabel = ''; if (!$saveOrder) : $disabledLabel = Text::_('JORDERINGDISABLED'); $disableClassName = 'inactive tip-top'; endif; ?> <span class="sortable-handler hasTooltip <?= $disableClassName?>" title="<?= $disabledLabel?>"> <i class="icon-menu"></i> </span> <input type="text" style="display:none" name="order[]" size="5" value="<?= $item->ordering;?>" class="width-20 text-area-order " /> <?php else : ?> <span class="sortable-handler inactive" > <i class="icon-menu"></i> </span> <?php endif; ?> </td> <td> <?php if ($item->parent_id != 0) : echo "<a href='index.php?option=com_fabrik&task=element.edit&id=" . $item->parent_id . "'>" . HTMLHelper::image('media/com_fabrik/images/child_element.png', Text::sprintf('COM_FABRIK_LINKED_ELEMENT', $item->parent_id), ['title' => Text::sprintf('COM_FABRIK_LINKED_ELEMENT', $item->parent_id),'class'=>'hasTooltip']) . '</a> '; else : if (!empty($item->child_ids)) : echo HTMLHelper::image('media/com_fabrik/images/parent_element.png', Text::sprintf('COM_FABRIK_PARENT_ELEMENT', $item->child_ids), ['title' =>Text::sprintf('COM_FABRIK_PARENT_ELEMENT', $item->child_ids),'class'=>'hasTooltip' ]); else : // Trying out removing the icon all together if it isn't linked // echo HTMLHelper::image('media/com_fabrik/images/element.png', Text::_('COM_FABRIK_NONLINKED_ELEMENT'), 'title="' . Text::_('COM_FABRIK_NONLINKED_ELEMENT') . '"'); endif; endif; ?> </td> <td> <?php if ($item->checked_out) : ?> <?= HTMLHelper::_('jgrid.checkedout', $i, $item->editor, $item->checked_out_time??'', 'elements.', $canCheckin); ?> <?php endif; ?> <?php if ($item->checked_out && ($item->checked_out != $user->get('id'))) : echo $item->name; else : ?> <a href="<?= $link; ?>"> <?= $item->name; ?> </a> <?php endif; ?> </td> <td> <?= str_replace(' ', ' ', Text::_(FabrikString::truncate($item->label, $truncateOpts))); ?> </td> <td> <span class="hasTooltip" title="<?= '<strong>' . $item->name . "</strong><br />" . $item->tip; ?>"> <?= $item->full_element_name; ?> </span> </td> <td class="center"> <span class="hasTooltip" title="<?= $extraTip ?>"> <?= $item->numValidations . '/' . $item->numJs; ?> </span> </td> <td> <a href="index.php?option=com_fabrik&task=group.edit&id=<?= $item->group_id?>"> <?= $item->group_name; ?> </a> </td> <td> <?= $item->plugin; ?> </td> <td class="text-center"> <?php echo HTMLHelper::_('jgrid.state', $states, $item->show_in_list_summary, $i, 'elements.', true, true); ?> </td> <td class="text-center"> <?= HTMLHelper::_('jgrid.published', $item->published, $i, 'elements.', $canChange);?> </td> </tr> <?php endforeach; ?> </tbody> </table> <?php endif; ?> <input type="hidden" name="task" value="" /> <input type="hidden" name="boxchecked" value="0" /> <?= HTMLHelper::_('form.token'); ?> </div> </form>
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка