primo commit
This commit is contained in:
		| @ -0,0 +1,167 @@ | ||||
| <?php | ||||
|  | ||||
| /** | ||||
|  * @package     Joomla.Administrator | ||||
|  * @subpackage  com_workflow | ||||
|  * | ||||
|  * @copyright   (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> | ||||
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  * @since       4.0.0 | ||||
|  */ | ||||
|  | ||||
| defined('_JEXEC') or die; | ||||
|  | ||||
| use Joomla\CMS\HTML\HTMLHelper; | ||||
| use Joomla\CMS\Language\Text; | ||||
| use Joomla\CMS\Layout\LayoutHelper; | ||||
| use Joomla\CMS\Router\Route; | ||||
| use Joomla\CMS\Session\Session; | ||||
|  | ||||
| /** @var \Joomla\Component\Workflow\Administrator\View\Transitions\HtmlView $this */ | ||||
|  | ||||
| /** @var \Joomla\CMS\WebAsset\WebAssetManager $wa */ | ||||
| $wa = $this->getDocument()->getWebAssetManager(); | ||||
| $wa->useScript('table.columns') | ||||
|     ->useScript('multiselect'); | ||||
|  | ||||
| $user   = $this->getCurrentUser(); | ||||
|  | ||||
| $listOrder = $this->escape($this->state->get('list.ordering')); | ||||
| $listDirn  = $this->escape($this->state->get('list.direction')); | ||||
| $saveOrderingUrl = ''; | ||||
|  | ||||
| $saveOrder = ($listOrder == 't.ordering'); | ||||
|  | ||||
| if ($saveOrder) { | ||||
|     $saveOrderingUrl = 'index.php?option=com_workflow&task=transitions.saveOrderAjax&workflow_id=' . (int) $this->workflowID . '&extension=' . $this->escape($this->workflow->extension) . '&' . Session::getFormToken() . '=1'; | ||||
|     HTMLHelper::_('draggablelist.draggable'); | ||||
| } | ||||
| ?> | ||||
| <form action="<?php echo Route::_('index.php?option=com_workflow&view=transitions&workflow_id=' . (int) $this->workflowID . '&extension=' . $this->escape($this->workflow->extension)); ?>" method="post" name="adminForm" id="adminForm"> | ||||
|     <div class="row"> | ||||
|         <?php if (!empty($this->sidebar)) : ?> | ||||
|         <div id="j-sidebar-container" class="col-md-2"> | ||||
|             <?php echo $this->sidebar; ?> | ||||
|         </div> | ||||
|         <?php endif; ?> | ||||
|         <div class="<?php if (!empty($this->sidebar)) { | ||||
|             echo 'col-md-10'; | ||||
|                     } else { | ||||
|                         echo 'col-md-12'; | ||||
|                     } ?>"> | ||||
|             <div id="j-main-container" class="j-main-container"> | ||||
|                 <?php | ||||
|                     // Search tools bar | ||||
|                     echo LayoutHelper::render('joomla.searchtools.default', ['view' => $this]); | ||||
|                 ?> | ||||
|                 <?php if (empty($this->transitions)) : ?> | ||||
|                     <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_WORKFLOW_TRANSITIONS_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 d-none d-md-table-cell"> | ||||
|                                     <?php echo HTMLHelper::_('grid.checkall'); ?> | ||||
|                                 </td> | ||||
|                                 <th scope="col" class="w-1 text-center d-none d-md-table-cell"> | ||||
|                                     <?php echo HTMLHelper::_('searchtools.sort', '', 't.ordering', $listDirn, $listOrder, null, 'asc', 'JGRID_HEADING_ORDERING', 'icon-menu-2'); ?> | ||||
|                                 </th> | ||||
|                                 <th scope="col" class="w-1 text-center"> | ||||
|                                     <?php echo HTMLHelper::_('searchtools.sort', 'JSTATUS', 't.published', $listDirn, $listOrder); ?> | ||||
|                                 </th> | ||||
|                                 <th scope="col" class="w-20"> | ||||
|                                     <?php echo HTMLHelper::_('searchtools.sort', 'COM_WORKFLOW_NAME', 't.title', $listDirn, $listOrder); ?> | ||||
|                                 </th> | ||||
|                                 <th scope="col" class="w-20"> | ||||
|                                     <?php echo HTMLHelper::_('searchtools.sort', 'COM_WORKFLOW_FROM_STAGE', 'from_stage', $listDirn, $listOrder); ?> | ||||
|                                 </th> | ||||
|                                 <th scope="col" class="w-20"> | ||||
|                                     <?php echo HTMLHelper::_('searchtools.sort', 'COM_WORKFLOW_TO_STAGE', 'to_stage', $listDirn, $listOrder); ?> | ||||
|                                 </th> | ||||
|                                 <th scope="col" class="w-3 d-none d-md-table-cell"> | ||||
|                                     <?php echo HTMLHelper::_('searchtools.sort', 'COM_WORKFLOW_ID', 't.id', $listDirn, $listOrder); ?> | ||||
|                                 </th> | ||||
|                             </tr> | ||||
|                         </thead> | ||||
|                         <tbody class="js-draggable" data-url="<?php echo $saveOrderingUrl; ?>" data-direction="<?php echo strtolower($listDirn); ?>"> | ||||
|                             <?php foreach ($this->transitions as $i => $item) : | ||||
|                                 $edit = Route::_('index.php?option=com_workflow&task=transition.edit&id=' . $item->id . '&workflow_id=' . (int) $this->workflowID . '&extension=' . $this->escape($this->workflow->extension)); | ||||
|  | ||||
|                                 $canEdit    = $user->authorise('core.edit', $this->extension . '.transition.' . $item->id); | ||||
|                                 $canCheckin = $user->authorise('core.admin', 'com_workflow') || $item->checked_out == $user->id || is_null($item->checked_out); | ||||
|                                 $canChange  = $user->authorise('core.edit.state', $this->extension . '.transition.' . $item->id) && $canCheckin; | ||||
|                                 ?> | ||||
|                                 <tr class="row<?php echo $i % 2; ?>"> | ||||
|                                     <td class="text-center d-none d-md-table-cell"> | ||||
|                                         <?php echo HTMLHelper::_('grid.id', $i, $item->id, false, 'cid', 'cb', Text::_($item->title)); ?> | ||||
|                                     </td> | ||||
|                                     <td class="text-center d-none d-md-table-cell"> | ||||
|                                         <?php | ||||
|                                         $iconClass = ''; | ||||
|                                         if (!$canChange) { | ||||
|                                             $iconClass = ' inactive'; | ||||
|                                         } elseif (!$saveOrder) { | ||||
|                                             $iconClass = ' inactive" title="' . Text::_('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" name="order[]" size="5" value="<?php echo $item->ordering; ?>" class="width-20 text-area-order hidden"> | ||||
|                                         <?php endif; ?> | ||||
|                                     </td> | ||||
|                                     <td class="text-center"> | ||||
|                                         <?php echo HTMLHelper::_('jgrid.published', $item->published, $i, 'transitions.', $canChange); ?> | ||||
|                                     </td> | ||||
|                                     <th scope="row"> | ||||
|                                         <?php if ($item->checked_out) : ?> | ||||
|                                             <?php echo HTMLHelper::_('jgrid.checkedout', $i, $item->editor, $item->checked_out_time, 'transitions.', $canCheckin); ?> | ||||
|                                         <?php endif; ?> | ||||
|                                         <?php if ($canEdit) : ?> | ||||
|                                             <a href="<?php echo $edit; ?>" title="<?php echo Text::_('JACTION_EDIT'); ?> <?php echo $this->escape(Text::_($item->title)); ?>"> | ||||
|                                                 <?php echo $this->escape(Text::_($item->title)); ?> | ||||
|                                             </a> | ||||
|                                             <div class="small"><?php echo $this->escape(Text::_($item->description)); ?></div> | ||||
|                                         <?php else : ?> | ||||
|                                             <?php echo $this->escape(Text::_($item->title)); ?> | ||||
|                                             <div class="small"><?php echo $this->escape(Text::_($item->description)); ?></div> | ||||
|                                         <?php endif; ?> | ||||
|                                     </th> | ||||
|                                     <td class="nowrap"> | ||||
|                                         <?php if ($item->from_stage_id < 0) : ?> | ||||
|                                             <?php echo Text::_('JALL'); ?> | ||||
|                                         <?php else : ?> | ||||
|                                             <?php echo ' ' . $this->escape(Text::_($item->from_stage)); ?> | ||||
|                                         <?php endif; ?> | ||||
|                                     </td> | ||||
|                                     <td class="nowrap"> | ||||
|                                         <?php echo ' ' . $this->escape(Text::_($item->to_stage)); ?> | ||||
|                                     </td> | ||||
|                                     <td class="d-none d-md-table-cell"> | ||||
|                                         <?php echo (int) $item->id; ?> | ||||
|                                     </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"> | ||||
|                 <input type="hidden" name="workflow_id" value="<?php echo (int) $this->workflowID ?>"> | ||||
|                 <input type="hidden" name="extension" value="<?php echo $this->escape($this->workflow->extension); ?>"> | ||||
|                 <?php echo HTMLHelper::_('form.token'); ?> | ||||
|             </div> | ||||
|         </div> | ||||
|     </div> | ||||
| </form> | ||||
		Reference in New Issue
	
	Block a user