first commit
This commit is contained in:
197
administrator/components/com_modules/tmpl/module/edit.php
Normal file
197
administrator/components/com_modules/tmpl/module/edit.php
Normal file
@ -0,0 +1,197 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage com_modules
|
||||
*
|
||||
* @copyright (C) 2009 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\Text;
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
use Joomla\CMS\Router\Route;
|
||||
|
||||
HTMLHelper::_('behavior.combobox');
|
||||
|
||||
$hasContent = isset($this->item->xml->customContent);
|
||||
$hasContentFieldName = 'content';
|
||||
|
||||
// For a later improvement
|
||||
if ($hasContent) {
|
||||
$hasContentFieldName = 'content';
|
||||
}
|
||||
|
||||
// Get Params Fieldsets
|
||||
$this->fieldsets = $this->form->getFieldsets('params');
|
||||
$this->useCoreUI = true;
|
||||
|
||||
Text::script('JYES');
|
||||
Text::script('JNO');
|
||||
Text::script('JALL');
|
||||
Text::script('JTRASHED');
|
||||
|
||||
$this->document->addScriptOptions('module-edit', ['itemId' => $this->item->id, 'state' => (int) $this->item->id == 0 ? 'Add' : 'Edit']);
|
||||
|
||||
/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
|
||||
$wa = $this->document->getWebAssetManager();
|
||||
$wa->useScript('keepalive')
|
||||
->useScript('form.validate')
|
||||
->useScript('com_modules.admin-module-edit');
|
||||
|
||||
$input = Factory::getApplication()->getInput();
|
||||
|
||||
// In case of modal
|
||||
$isModal = $input->get('layout') === 'modal';
|
||||
$layout = $isModal ? 'modal' : 'edit';
|
||||
$tmpl = $isModal || $input->get('tmpl', '', 'cmd') === 'component' ? '&tmpl=component' : '';
|
||||
|
||||
?>
|
||||
|
||||
<form action="<?php echo Route::_('index.php?option=com_modules&layout=' . $layout . $tmpl . '&client_id=' . $this->form->getValue('client_id') . '&id=' . (int) $this->item->id); ?>" method="post" name="adminForm" id="module-form" aria-label="<?php echo Text::_('COM_MODULES_FORM_TITLE_' . ((int) $this->item->id === 0 ? 'NEW' : 'EDIT'), true); ?>" class="form-validate">
|
||||
|
||||
<?php echo LayoutHelper::render('joomla.edit.title_alias', $this); ?>
|
||||
|
||||
<div class="main-card">
|
||||
<?php echo HTMLHelper::_('uitab.startTabSet', 'myTab', ['active' => 'general', 'recall' => true, 'breakpoint' => 768]); ?>
|
||||
|
||||
<?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'general', Text::_('COM_MODULES_MODULE')); ?>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-9">
|
||||
<?php if ($this->item->xml) : ?>
|
||||
<?php if ($this->item->xml->description) : ?>
|
||||
<h2>
|
||||
<?php
|
||||
if ($this->item->xml) {
|
||||
echo ($text = (string) $this->item->xml->name) ? Text::_($text) : $this->item->module;
|
||||
} else {
|
||||
echo Text::_('COM_MODULES_ERR_XML');
|
||||
}
|
||||
?>
|
||||
</h2>
|
||||
<div class="info-labels">
|
||||
<span class="badge bg-secondary">
|
||||
<?php echo $this->item->client_id == 0 ? Text::_('JSITE') : Text::_('JADMINISTRATOR'); ?>
|
||||
</span>
|
||||
</div>
|
||||
<div>
|
||||
<?php
|
||||
$this->fieldset = 'description';
|
||||
$short_description = Text::_($this->item->xml->description);
|
||||
$long_description = LayoutHelper::render('joomla.edit.fieldset', $this);
|
||||
|
||||
if (!$long_description) {
|
||||
$truncated = HTMLHelper::_('string.truncate', $short_description, 550, true, false);
|
||||
|
||||
if (strlen($truncated) > 500) {
|
||||
$long_description = $short_description;
|
||||
$short_description = HTMLHelper::_('string.truncate', $truncated, 250);
|
||||
|
||||
if ($short_description == $long_description) {
|
||||
$long_description = '';
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
<p><?php echo $short_description; ?></p>
|
||||
<?php if ($long_description) : ?>
|
||||
<p class="readmore">
|
||||
<a href="#" onclick="document.getElementById('myTab').activateTab(document.getElementById('description'));">
|
||||
<?php echo Text::_('JGLOBAL_SHOW_FULL_DESCRIPTION'); ?>
|
||||
</a>
|
||||
</p>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php else : ?>
|
||||
<div class="alert alert-danger">
|
||||
<span class="icon-exclamation-triangle" aria-hidden="true"></span><span class="visually-hidden"><?php echo Text::_('ERROR'); ?></span>
|
||||
<?php echo Text::_('COM_MODULES_ERR_XML'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php
|
||||
if ($hasContent) {
|
||||
echo $this->form->getInput($hasContentFieldName);
|
||||
}
|
||||
$this->fieldset = 'basic';
|
||||
$html = LayoutHelper::render('joomla.edit.fieldset', $this);
|
||||
echo $html ? '<hr>' . $html : '';
|
||||
?>
|
||||
</div>
|
||||
<div class="col-lg-3">
|
||||
<?php
|
||||
// Set main fields.
|
||||
$this->fields = [
|
||||
'showtitle',
|
||||
'position',
|
||||
'published',
|
||||
'publish_up',
|
||||
'publish_down',
|
||||
'access',
|
||||
'ordering',
|
||||
'language',
|
||||
'note'
|
||||
];
|
||||
|
||||
?>
|
||||
<?php if ($this->item->client_id == 0) : ?>
|
||||
<?php echo LayoutHelper::render('joomla.edit.global', $this); ?>
|
||||
<?php else : ?>
|
||||
<?php echo LayoutHelper::render('joomla.edit.admin_modules', $this); ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo HTMLHelper::_('uitab.endTab'); ?>
|
||||
|
||||
<?php if (isset($long_description) && $long_description != '') : ?>
|
||||
<?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'description', Text::_('JGLOBAL_FIELDSET_DESCRIPTION')); ?>
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<?php echo $long_description; ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo HTMLHelper::_('uitab.endTab'); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->item->client_id == 0) : ?>
|
||||
<?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'assignment', Text::_('COM_MODULES_MENU_ASSIGNMENT')); ?>
|
||||
<fieldset id="fieldset-assignment" class="options-form">
|
||||
<legend><?php echo Text::_('COM_MODULES_MENU_ASSIGNMENT'); ?></legend>
|
||||
<div>
|
||||
<?php echo $this->loadTemplate('assignment'); ?>
|
||||
</div>
|
||||
</fieldset>
|
||||
<?php echo HTMLHelper::_('uitab.endTab'); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php
|
||||
$this->fieldsets = [];
|
||||
$this->ignore_fieldsets = ['basic', 'description'];
|
||||
echo LayoutHelper::render('joomla.edit.params', $this);
|
||||
?>
|
||||
|
||||
<?php if ($this->canDo->get('core.admin')) : ?>
|
||||
<?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'permissions', Text::_('COM_MODULES_FIELDSET_RULES')); ?>
|
||||
<fieldset id="fieldset-permissions" class="options-form">
|
||||
<legend><?php echo Text::_('COM_MODULES_FIELDSET_RULES'); ?></legend>
|
||||
<div>
|
||||
<?php echo $this->form->getInput('rules'); ?>
|
||||
</div>
|
||||
</fieldset>
|
||||
<?php echo HTMLHelper::_('uitab.endTab'); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo HTMLHelper::_('uitab.endTabSet'); ?>
|
||||
|
||||
<input type="hidden" name="task" value="">
|
||||
<input type="hidden" name="return" value="<?php echo $input->get('return', null, 'BASE64'); ?>">
|
||||
<?php echo HTMLHelper::_('form.token'); ?>
|
||||
<?php echo $this->form->getInput('module'); ?>
|
||||
<?php echo $this->form->getInput('client_id'); ?>
|
||||
</div>
|
||||
</form>
|
||||
@ -0,0 +1,151 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage com_modules
|
||||
*
|
||||
* @copyright (C) 2009 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\Multilanguage;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\Component\Menus\Administrator\Helper\MenusHelper;
|
||||
use Joomla\Component\Modules\Administrator\Helper\ModulesHelper;
|
||||
|
||||
// Initialise related data.
|
||||
$menuTypes = MenusHelper::getMenuLinks();
|
||||
|
||||
$this->document->getWebAssetManager()
|
||||
->useScript('joomla.treeselectmenu')
|
||||
->useScript('com_modules.admin-module-edit-assignment');
|
||||
|
||||
?>
|
||||
<div class="control-group">
|
||||
<label id="jform_menus-lbl" class="control-label" for="jform_assignment"><?php echo Text::_('COM_MODULES_MODULE_ASSIGN'); ?></label>
|
||||
<div id="jform_menus" class="controls">
|
||||
<select class="form-select" name="jform[assignment]" id="jform_assignment">
|
||||
<?php echo HTMLHelper::_('select.options', ModulesHelper::getAssignmentOptions($this->item->client_id), 'value', 'text', $this->item->assignment, true); ?>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div id="menuselect-group" class="control-group">
|
||||
<label id="jform_menuselect-lbl" class="control-label" for="jform_menuselect"><?php echo Text::_('JGLOBAL_MENU_SELECTION'); ?></label>
|
||||
<div id="jform_menuselect" class="controls">
|
||||
<?php if (!empty($menuTypes)) : ?>
|
||||
<div class="card-header">
|
||||
<section class="d-flex align-items-center flex-wrap w-100" aria-label="<?php echo Text::_('COM_MODULES_GLOBAL'); ?>">
|
||||
<div class="d-flex align-items-center flex-fill mb-1" role="group" aria-label="<?php echo Text::_('COM_MODULES_GLOBAL_ASSIGN'); ?>"><?php echo Text::_('COM_MODULES_GLOBAL_ASSIGN'); ?>
|
||||
<button id="treeCheckAll" class="btn btn-secondary btn-sm mx-1" type="button">
|
||||
<?php echo Text::_('JALL'); ?>
|
||||
</button>
|
||||
<button id="treeUncheckAll" class="btn btn-secondary btn-sm mx-1" type="button">
|
||||
<?php echo Text::_('JNONE'); ?>
|
||||
</button>
|
||||
</div>
|
||||
<div class="d-flex align-items-center mb-1 flex-fill" role="group" aria-label="<?php echo Text::_('COM_MODULES_GLOBAL_TREE_EXPAND'); ?>"><?php echo Text::_('COM_MODULES_GLOBAL_TREE_EXPAND'); ?>
|
||||
<button id="treeExpandAll" class="btn btn-secondary btn-sm mx-1" type="button">
|
||||
<?php echo Text::_('JALL'); ?>
|
||||
</button>
|
||||
<button id="treeCollapseAll" class="btn btn-secondary btn-sm mx-1" type="button">
|
||||
<?php echo Text::_('JNONE'); ?>
|
||||
</button>
|
||||
</div>
|
||||
<div role="search" class="flex-grow-1">
|
||||
<label for="treeselectfilter" class="visually-hidden"><?php echo Text::_('COM_MODULES_SEARCH_MENUITEM'); ?></label>
|
||||
<input type="text" id="treeselectfilter" name="treeselectfilter" class="form-control search-query" autocomplete="off" placeholder="<?php echo Text::_('JSEARCH_FILTER'); ?>">
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<ul class="treeselect">
|
||||
<?php foreach ($menuTypes as &$type) : ?>
|
||||
<?php if (count($type->links)) : ?>
|
||||
<?php $prevlevel = 0; ?>
|
||||
<li>
|
||||
<div class="treeselect-item treeselect-header">
|
||||
<label class="nav-header"><?php echo $type->title; ?></label></div>
|
||||
<?php foreach ($type->links as $i => $link) : ?>
|
||||
<?php
|
||||
if ($prevlevel < $link->level) {
|
||||
echo '<ul class="treeselect-sub">';
|
||||
} elseif ($prevlevel > $link->level) {
|
||||
echo str_repeat('</li></ul>', $prevlevel - $link->level);
|
||||
} else {
|
||||
echo '</li>';
|
||||
}
|
||||
$selected = 0;
|
||||
if ($this->item->assignment == 0) {
|
||||
$selected = 1;
|
||||
} elseif ($this->item->assignment < 0) {
|
||||
$selected = in_array(-$link->value, $this->item->assigned);
|
||||
} elseif ($this->item->assignment > 0) {
|
||||
$selected = in_array($link->value, $this->item->assigned);
|
||||
}
|
||||
?>
|
||||
<li>
|
||||
<div class="treeselect-item">
|
||||
<?php
|
||||
$uselessMenuItem = in_array($link->type, ['separator', 'heading', 'alias', 'url']);
|
||||
$id = 'jform_menuselect';
|
||||
?>
|
||||
<input type="checkbox" class="novalidate form-check-input" name="jform[assigned][]" id="<?php echo $id . $link->value; ?>" value="<?php echo (int) $link->value; ?>"<?php echo $selected ? ' checked="checked"' : '';
|
||||
echo $uselessMenuItem ? ' disabled="disabled"' : ''; ?>>
|
||||
<label for="<?php echo $id . $link->value; ?>" class="">
|
||||
<?php echo $link->text; ?>
|
||||
<?php if (Multilanguage::isEnabled() && $link->language != '' && $link->language != '*') : ?>
|
||||
<?php if ($link->language_image) : ?>
|
||||
<?php echo HTMLHelper::_('image', 'mod_languages/' . $link->language_image . '.gif', $link->language_title, ['title' => $link->language_title], true); ?>
|
||||
<?php else : ?>
|
||||
<?php echo '<span class="badge bg-secondary" title="' . $link->language_title . '">' . $link->language_sef . '</span>'; ?>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php if ($link->published == 0) : ?>
|
||||
<?php echo ' <span class="badge bg-secondary">' . Text::_('JUNPUBLISHED') . '</span>'; ?>
|
||||
<?php endif; ?>
|
||||
<?php if ($uselessMenuItem) : ?>
|
||||
<?php echo ' <span class="badge bg-secondary">' . Text::_('COM_MODULES_MENU_ITEM_' . strtoupper($link->type)) . '</span>'; ?>
|
||||
<?php endif; ?>
|
||||
</label>
|
||||
</div>
|
||||
<?php
|
||||
|
||||
if (!isset($type->links[$i + 1])) {
|
||||
echo str_repeat('</li></ul>', $link->level);
|
||||
}
|
||||
$prevlevel = $link->level;
|
||||
?>
|
||||
<?php endforeach; ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
<joomla-alert id="noresultsfound" type="warning" style="display:none"><?php echo Text::_('JGLOBAL_NO_MATCHING_RESULTS'); ?></joomla-alert>
|
||||
<div class="hidden" id="treeselectmenu">
|
||||
<div class="nav-hover treeselect-menu">
|
||||
<div class="dropdown">
|
||||
<button type="button" data-bs-toggle="dropdown" class="dropdown-toggle btn btn-sm btn-light">
|
||||
<span class="caret"></span>
|
||||
<span class="visually-hidden"><?php echo Text::sprintf('JGLOBAL_TOGGLE_DROPDOWN'); ?></span>
|
||||
</button>
|
||||
<div class="dropdown-menu">
|
||||
<h1 class="dropdown-header"><?php echo Text::_('COM_MODULES_SUBITEMS'); ?></h1>
|
||||
<div class="dropdown-divider"></div>
|
||||
<a class="dropdown-item checkall" href="javascript://"><span class="icon-check-square" aria-hidden="true"></span> <?php echo Text::_('JSELECT'); ?></a>
|
||||
<a class="dropdown-item uncheckall" href="javascript://"><span class="icon-square" aria-hidden="true"></span> <?php echo Text::_('COM_MODULES_DESELECT'); ?></a>
|
||||
<div class="treeselect-menu-expand">
|
||||
<div class="dropdown-divider"></div>
|
||||
<a class="dropdown-item expandall" href="javascript://"><span class="icon-plus" aria-hidden="true"></span> <?php echo Text::_('COM_MODULES_EXPAND'); ?></a>
|
||||
<a class="dropdown-item collapseall" href="javascript://"><span class="icon-minus" aria-hidden="true"></span> <?php echo Text::_('COM_MODULES_COLLAPSE'); ?></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
34
administrator/components/com_modules/tmpl/module/modal.php
Normal file
34
administrator/components/com_modules/tmpl/module/modal.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage com_modules
|
||||
*
|
||||
* @copyright (C) 2009 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;
|
||||
|
||||
/** @var \Joomla\CMS\WebAsset\WebAssetManager $wa */
|
||||
$wa = Factory::getApplication()->getDocument()->getWebAssetManager();
|
||||
$wa->addInlineScript('
|
||||
document.addEventListener("DOMContentLoaded", function() {
|
||||
const saveCloseButton = window.parent.document.getElementById("btnModalSaveAndClose");
|
||||
if (saveCloseButton) {
|
||||
saveCloseButton.classList.remove("hidden");
|
||||
}
|
||||
});
|
||||
');
|
||||
|
||||
?>
|
||||
<button id="applyBtn" type="button" class="hidden" onclick="Joomla.submitbutton('module.apply');"></button>
|
||||
<button id="saveBtn" type="button" class="hidden" onclick="Joomla.submitbutton('module.save');"></button>
|
||||
<button id="closeBtn" type="button" class="hidden" onclick="Joomla.submitbutton('module.cancel');"></button>
|
||||
|
||||
<div class="container-popup">
|
||||
<?php $this->setLayout('edit'); ?>
|
||||
<?php echo $this->loadTemplate(); ?>
|
||||
</div>
|
||||
220
administrator/components/com_modules/tmpl/modules/default.php
Normal file
220
administrator/components/com_modules/tmpl/modules/default.php
Normal file
@ -0,0 +1,220 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage com_modules
|
||||
*
|
||||
* @copyright (C) 2008 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\Helper\ModuleHelper;
|
||||
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\CMS\Session\Session;
|
||||
|
||||
/** @var \Joomla\CMS\WebAsset\WebAssetManager $wa */
|
||||
$wa = $this->document->getWebAssetManager();
|
||||
$wa->useScript('table.columns')
|
||||
->useScript('multiselect');
|
||||
|
||||
$clientId = (int) $this->state->get('client_id', 0);
|
||||
$user = $this->getCurrentUser();
|
||||
$listOrder = $this->escape($this->state->get('list.ordering'));
|
||||
$listDirn = $this->escape($this->state->get('list.direction'));
|
||||
$saveOrder = ($listOrder == 'a.ordering');
|
||||
|
||||
if ($saveOrder && !empty($this->items)) {
|
||||
$saveOrderingUrl = 'index.php?option=com_modules&task=modules.saveOrderAjax&tmpl=component&' . Session::getFormToken() . '=1';
|
||||
HTMLHelper::_('draggablelist.draggable');
|
||||
}
|
||||
?>
|
||||
<form action="<?php echo Route::_('index.php?option=com_modules&view=modules&client_id=' . $clientId); ?>" method="post" name="adminForm" id="adminForm">
|
||||
<div id="j-main-container" class="j-main-container">
|
||||
<?php echo LayoutHelper::render('joomla.searchtools.default', ['view' => $this]); ?>
|
||||
<?php if ($this->total > 0) : ?>
|
||||
<table class="table" id="moduleList">
|
||||
<caption class="visually-hidden">
|
||||
<?php echo Text::_('COM_MODULES_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 d-none d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', '', 'a.ordering', $listDirn, $listOrder, null, 'asc', 'JGRID_HEADING_ORDERING', 'icon-sort'); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-1 text-center">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'JSTATUS', 'a.published', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="title">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-10 d-none d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'COM_MODULES_HEADING_POSITION', 'a.position', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-10 d-none d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'COM_MODULES_HEADING_MODULE', 'name', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php if ($clientId === 0) : ?>
|
||||
<th scope="col" class="w-10 d-none d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'COM_MODULES_HEADING_PAGES', 'pages', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
<th scope="col" class="w-10 d-none d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_ACCESS', 'ag.title', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php if (($clientId === 0) && (Multilanguage::isEnabled())) : ?>
|
||||
<th scope="col" class="w-10 d-none d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_LANGUAGE', 'l.title', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php elseif ($clientId === 1 && ModuleHelper::isAdminMultilang()) : ?>
|
||||
<th scope="col" class="w-10 d-none d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_LANGUAGE', 'a.language', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
<th scope="col" class="w-5 d-none d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('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 foreach ($this->items as $i => $item) :
|
||||
$ordering = ($listOrder == 'a.ordering');
|
||||
$canCreate = $user->authorise('core.create', 'com_modules');
|
||||
$canEdit = $user->authorise('core.edit', 'com_modules.module.' . $item->id);
|
||||
$canCheckin = $user->authorise('core.manage', 'com_checkin') || $item->checked_out == $user->get('id') || is_null($item->checked_out);
|
||||
$canChange = $user->authorise('core.edit.state', 'com_modules.module.' . $item->id) && $canCheckin;
|
||||
?>
|
||||
<tr class="row<?php echo $i % 2; ?>" data-draggable-group="<?php echo $item->position ?: 'none'; ?>">
|
||||
<td class="text-center">
|
||||
<?php echo HTMLHelper::_('grid.id', $i, $item->id, false, 'cid', 'cb', $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"></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 // Check if extension is enabled ?>
|
||||
<?php if ($item->enabled > 0) : ?>
|
||||
<?php echo HTMLHelper::_('jgrid.published', $item->published, $i, 'modules.', $canChange, 'cb', $item->publish_up, $item->publish_down); ?>
|
||||
<?php else : ?>
|
||||
<?php // Extension is not enabled, show a message that indicates this. ?>
|
||||
<span class="tbody-icon" title="<?php echo Text::sprintf('COM_MODULES_MSG_MANAGE_EXTENSION_DISABLED', $this->escape($item->name)); ?>">
|
||||
<span class="icon-minus-circle" aria-hidden="true"></span>
|
||||
</span>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<th scope="row" class="has-context">
|
||||
<div>
|
||||
<?php if ($item->checked_out) : ?>
|
||||
<?php echo HTMLHelper::_('jgrid.checkedout', $i, $item->editor, $item->checked_out_time, 'modules.', $canCheckin); ?>
|
||||
<?php endif; ?>
|
||||
<?php if ($canEdit) : ?>
|
||||
<a href="<?php echo Route::_('index.php?option=com_modules&task=module.edit&id=' . (int) $item->id); ?>" title="<?php echo Text::_('JACTION_EDIT'); ?> <?php echo $this->escape($item->title); ?>">
|
||||
<?php echo $this->escape($item->title); ?></a>
|
||||
<?php else : ?>
|
||||
<?php echo $this->escape($item->title); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (!empty($item->note)) : ?>
|
||||
<div class="small">
|
||||
<?php echo Text::sprintf('JGLOBAL_LIST_NOTE', $this->escape($item->note)); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</th>
|
||||
<td class="d-none d-md-table-cell">
|
||||
<?php if ($item->position) : ?>
|
||||
<span class="badge bg-info">
|
||||
<?php echo $item->position; ?>
|
||||
</span>
|
||||
<?php else : ?>
|
||||
<span class="badge bg-secondary">
|
||||
<?php echo Text::_('JNONE'); ?>
|
||||
</span>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<td class="small d-none d-md-table-cell">
|
||||
<?php echo $item->name; ?>
|
||||
</td>
|
||||
<?php if ($clientId === 0) : ?>
|
||||
<td class="small d-none d-md-table-cell">
|
||||
<?php echo $item->pages; ?>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
<td class="small d-none d-md-table-cell">
|
||||
<?php echo $this->escape($item->access_level); ?>
|
||||
</td>
|
||||
<?php if (($clientId === 0) && (Multilanguage::isEnabled())) : ?>
|
||||
<td class="small d-none d-md-table-cell">
|
||||
<?php echo LayoutHelper::render('joomla.content.language', $item); ?>
|
||||
</td>
|
||||
<?php elseif ($clientId === 1 && ModuleHelper::isAdminMultilang()) : ?>
|
||||
<td class="small d-none d-md-table-cell">
|
||||
<?php if ($item->language == '') :?>
|
||||
<?php echo Text::_('JUNDEFINED'); ?>
|
||||
<?php elseif ($item->language == '*') :?>
|
||||
<?php echo Text::alt('JALL', 'language'); ?>
|
||||
<?php else :?>
|
||||
<?php echo $this->escape($item->language); ?>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
<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; ?>
|
||||
|
||||
<?php // Load the batch processing form. ?>
|
||||
<?php
|
||||
if (
|
||||
$user->authorise('core.create', 'com_modules')
|
||||
&& $user->authorise('core.edit', 'com_modules')
|
||||
&& $user->authorise('core.edit.state', 'com_modules')
|
||||
) : ?>
|
||||
<?php echo HTMLHelper::_(
|
||||
'bootstrap.renderModal',
|
||||
'collapseModal',
|
||||
[
|
||||
'title' => Text::_('COM_MODULES_BATCH_OPTIONS'),
|
||||
'footer' => $this->loadTemplate('batch_footer'),
|
||||
],
|
||||
$this->loadTemplate('batch_body')
|
||||
); ?>
|
||||
<?php endif; ?>
|
||||
<input type="hidden" name="task" value="">
|
||||
<input type="hidden" name="boxchecked" value="0">
|
||||
<?php echo HTMLHelper::_('form.token'); ?>
|
||||
</div>
|
||||
</form>
|
||||
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<layout title="COM_MODULES_MODULES_VIEW_DEFAULT_TITLE">
|
||||
<message>
|
||||
<![CDATA[COM_MODULES_MODULES_VIEW_DEFAULT_DESC]]>
|
||||
</message>
|
||||
</layout>
|
||||
</metadata>
|
||||
@ -0,0 +1,83 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage com_modules
|
||||
*
|
||||
* @copyright (C) 2015 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\Helper\ModuleHelper;
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
use Joomla\Component\Modules\Administrator\Helper\ModulesHelper;
|
||||
|
||||
$clientId = $this->state->get('client_id');
|
||||
|
||||
// Show only Module Positions of published Templates
|
||||
$published = 1;
|
||||
$positions = HTMLHelper::_('modules.positions', $clientId, $published);
|
||||
$positions['']['items'][] = ModulesHelper::createOption('nochange', Text::_('COM_MODULES_BATCH_POSITION_NOCHANGE'));
|
||||
$positions['']['items'][] = ModulesHelper::createOption('noposition', Text::_('COM_MODULES_BATCH_POSITION_NOPOSITION'));
|
||||
|
||||
// Build field
|
||||
$attr = [
|
||||
'id' => 'batch-position-id',
|
||||
];
|
||||
|
||||
Text::script('JGLOBAL_SELECT_NO_RESULTS_MATCH');
|
||||
Text::script('JGLOBAL_SELECT_PRESS_TO_SELECT');
|
||||
|
||||
$this->document->getWebAssetManager()
|
||||
->usePreset('choicesjs')
|
||||
->useScript('webcomponent.field-fancy-select')
|
||||
->useScript('joomla.batch-copymove');
|
||||
|
||||
?>
|
||||
|
||||
<div class="p-3">
|
||||
<p><?php echo Text::_('COM_MODULES_BATCH_TIP'); ?></p>
|
||||
<div class="row">
|
||||
<?php if ($clientId != 1) : ?>
|
||||
<div class="form-group col-md-6">
|
||||
<div class="controls">
|
||||
<?php echo LayoutHelper::render('joomla.html.batch.language', []); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php elseif ($clientId == 1 && ModuleHelper::isAdminMultilang()) : ?>
|
||||
<div class="form-group col-md-6">
|
||||
<div class="controls">
|
||||
<?php echo LayoutHelper::render('joomla.html.batch.adminlanguage', []); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<div class="form-group col-md-6">
|
||||
<div class="controls">
|
||||
<?php echo LayoutHelper::render('joomla.html.batch.access', []); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<?php if ($published >= 0) : ?>
|
||||
<div class="col-md-6">
|
||||
<div class="controls">
|
||||
<label id="batch-choose-action-lbl" for="batch-choose-action">
|
||||
<?php echo Text::_('COM_MODULES_BATCH_POSITION_LABEL'); ?>
|
||||
</label>
|
||||
<div id="batch-choose-action">
|
||||
<joomla-field-fancy-select allow-custom search-placeholder="<?php echo $this->escape(Text::_('COM_MODULES_TYPE_OR_SELECT_POSITION')); ?>">
|
||||
<?php echo HTMLHelper::_('select.groupedlist', $positions, 'batch[position_id]', $attr); ?>
|
||||
</joomla-field-fancy-select>
|
||||
<div id="batch-copy-move" class="control-group radio">
|
||||
<?php echo HTMLHelper::_('modules.batchOptions'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage com_modules
|
||||
*
|
||||
* @copyright (C) 2015 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\Language\Text;
|
||||
|
||||
?>
|
||||
<button type="button" class="btn btn-secondary" onclick="document.getElementById('batch-position-id').value='';document.getElementById('batch-access').value='';document.getElementById('batch-language-id').value=''" data-bs-dismiss="modal">
|
||||
<?php echo Text::_('JCANCEL'); ?>
|
||||
</button>
|
||||
<button type="submit" class="btn btn-success" onclick="Joomla.submitbutton('module.batch');return false;">
|
||||
<?php echo Text::_('JGLOBAL_BATCH_PROCESS'); ?>
|
||||
</button>
|
||||
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage com_modules
|
||||
*
|
||||
* @copyright (C) 2021 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\Language\Text;
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
|
||||
$displayData = [
|
||||
'textPrefix' => 'COM_MODULES',
|
||||
'formURL' => 'index.php?option=com_modules&view=select&client_id=' . $this->clientId,
|
||||
'helpURL' => 'https://docs.joomla.org/Special:MyLanguage/Module',
|
||||
'icon' => 'icon-cube module',
|
||||
// Although it is (almost) impossible to get to this page with no created Administrator Modules, we add this for completeness.
|
||||
'title' => Text::_('COM_MODULES_EMPTYSTATE_TITLE_' . ($this->clientId ? 'ADMINISTRATOR' : 'SITE')),
|
||||
];
|
||||
|
||||
if ($this->getCurrentUser()->authorise('core.create', 'com_modules')) {
|
||||
$displayData['createURL'] = 'index.php?option=com_modules&view=select&client_id=' . $this->clientId;
|
||||
}
|
||||
|
||||
echo LayoutHelper::render('joomla.content.emptystate', $displayData);
|
||||
150
administrator/components/com_modules/tmpl/modules/modal.php
Normal file
150
administrator/components/com_modules/tmpl/modules/modal.php
Normal file
@ -0,0 +1,150 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage com_modules
|
||||
*
|
||||
* @copyright (C) 2015 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\Text;
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\CMS\Session\Session;
|
||||
|
||||
if (Factory::getApplication()->isClient('site')) {
|
||||
Session::checkToken('get') or die(Text::_('JINVALID_TOKEN'));
|
||||
}
|
||||
|
||||
/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
|
||||
$wa = $this->document->getWebAssetManager();
|
||||
$wa->useScript('com_modules.admin-modules-modal')->useScript('modal-content-select');
|
||||
|
||||
$listOrder = $this->escape($this->state->get('list.ordering'));
|
||||
$listDirn = $this->escape($this->state->get('list.direction'));
|
||||
$editor = Factory::getApplication()->getInput()->get('editor', '', 'cmd');
|
||||
$link = 'index.php?option=com_modules&view=modules&layout=modal&tmpl=component&' . Session::getFormToken() . '=1';
|
||||
|
||||
if (!empty($editor)) {
|
||||
$link .= '&editor=' . $editor;
|
||||
}
|
||||
?>
|
||||
<div class="container-popup">
|
||||
|
||||
<form action="<?php echo Route::_($link); ?>" method="post" name="adminForm" id="adminForm">
|
||||
|
||||
<?php echo LayoutHelper::render('joomla.searchtools.default', ['view' => $this]); ?>
|
||||
|
||||
<?php if ($this->total > 0) : ?>
|
||||
<table class="table" id="moduleList">
|
||||
<caption class="visually-hidden">
|
||||
<?php echo Text::_('COM_MODULES_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>
|
||||
<th scope="col" class="w-1 text-center">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'JSTATUS', 'a.published', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="title">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-15 d-none d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'COM_MODULES_HEADING_POSITION', 'a.position', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-10 d-none d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'COM_MODULES_HEADING_MODULE', 'name', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-10 d-none d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'COM_MODULES_HEADING_PAGES', 'pages', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-10 d-none d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_ACCESS', 'ag.title', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-10 d-none d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_LANGUAGE', 'l.title', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<th scope="col" class="w-1 d-none d-md-table-cell">
|
||||
<?php echo HTMLHelper::_('searchtools.sort', 'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
$iconStates = [
|
||||
-2 => 'icon-trash',
|
||||
0 => 'icon-times',
|
||||
1 => 'icon-check',
|
||||
2 => 'icon-folder',
|
||||
];
|
||||
foreach ($this->items as $i => $item) :
|
||||
$attrs = 'data-content-select data-content-type="com_modules.module"'
|
||||
. ' data-id="' . $item->id . '"'
|
||||
. ' data-title="' . $this->escape($item->title) . '"'
|
||||
. ' data-position="' . $this->escape($item->position) . '"'
|
||||
. ' data-module-element="' . $this->escape($item->module) . '"'
|
||||
// @TODO: Remove data-editor and data-module after full transition to postMessage()
|
||||
. ' data-editor="' . $this->escape($editor) . '"'
|
||||
. ' data-module="' . ((int) $item->id) . '"';
|
||||
|
||||
$attrs1 = $attrs;
|
||||
$attrs1 .= ' data-html="{loadmoduleid ' . ((int) $item->id) . '}"';
|
||||
$attrs2 = $attrs;
|
||||
$attrs2 .= ' data-html="{loadposition ' . $this->escape($item->position) . '}"';
|
||||
?>
|
||||
<tr class="row<?php echo $i % 2; ?>">
|
||||
<td class="text-center">
|
||||
<span class="tbody-icon">
|
||||
<span class="<?php echo $iconStates[$this->escape($item->published)]; ?>" aria-hidden="true"></span>
|
||||
</span>
|
||||
</td>
|
||||
<th scope="row" class="has-context">
|
||||
<button type="button" class="js-module-insert btn btn-sm btn-success w-100" <?php echo $attrs1; ?>>
|
||||
<?php echo $this->escape($item->title); ?>
|
||||
</button>
|
||||
</th>
|
||||
<td class="small d-none d-md-table-cell">
|
||||
<?php if ($item->position) : ?>
|
||||
<button type="button" class="js-position-insert btn btn-sm btn-warning w-100" <?php echo $attrs2; ?>><?php echo $this->escape($item->position); ?></button>
|
||||
<?php else : ?>
|
||||
<span class="btn btn-sm btn-secondary w-100"><?php echo Text::_('JNONE'); ?></span>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<td class="small d-none d-md-table-cell">
|
||||
<?php echo $item->name; ?>
|
||||
</td>
|
||||
<td class="small d-none d-md-table-cell">
|
||||
<?php echo $item->pages; ?>
|
||||
</td>
|
||||
<td class="small d-none d-md-table-cell">
|
||||
<?php echo $this->escape($item->access_level); ?>
|
||||
</td>
|
||||
<td class="small d-none d-md-table-cell">
|
||||
<?php echo LayoutHelper::render('joomla.content.language', $item); ?>
|
||||
</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="editor" value="<?php echo $editor; ?>" />
|
||||
<?php echo HTMLHelper::_('form.token'); ?>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
82
administrator/components/com_modules/tmpl/select/default.php
Normal file
82
administrator/components/com_modules/tmpl/select/default.php
Normal file
@ -0,0 +1,82 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage com_modules
|
||||
*
|
||||
* @copyright (C) 2009 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\Text;
|
||||
use Joomla\CMS\Router\Route;
|
||||
|
||||
$app = Factory::getApplication();
|
||||
|
||||
$function = $app->getInput()->getCmd('function');
|
||||
|
||||
/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
|
||||
$wa = $this->document->getWebAssetManager();
|
||||
$wa->useScript('com_modules.admin-module-search');
|
||||
|
||||
if ($function) :
|
||||
$wa->useScript('com_modules.admin-select-modal');
|
||||
endif;
|
||||
|
||||
?>
|
||||
|
||||
<div class="d-none" id="comModulesSelectSearchContainer">
|
||||
<div class="d-flex mt-2">
|
||||
<div class="m-auto">
|
||||
<label class="visually-hidden" for="comModulesSelectSearch">
|
||||
<?php echo Text::_('COM_MODULES_TYPE_CHOOSE'); ?>
|
||||
</label>
|
||||
<div class="input-group mb-3 me-sm-2">
|
||||
<input type="text" value=""
|
||||
class="form-control" id="comModulesSelectSearch"
|
||||
placeholder="<?php echo Text::_('JSEARCH_FILTER'); ?>"
|
||||
>
|
||||
<div class="input-group-text">
|
||||
<span class="icon-search" aria-hidden="true"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="new-modules-list">
|
||||
<div class="new-modules">
|
||||
<div class="modules-alert alert alert-info d-none">
|
||||
<span class="icon-info-circle" aria-hidden="true"></span><span class="visually-hidden"><?php echo Text::_('INFO'); ?></span>
|
||||
<?php echo Text::_('COM_MODULES_MSG_MANAGE_NO_MODULES'); ?>
|
||||
</div>
|
||||
<h2 class="pb-3 ms-3" id="comModulesSelectTypeHeader">
|
||||
<?php echo Text::_('COM_MODULES_TYPE_CHOOSE'); ?>
|
||||
</h2>
|
||||
<div class="main-card card-columns p-4" id="comModulesSelectResultsContainer">
|
||||
<?php foreach ($this->items as &$item) : ?>
|
||||
<?php // Prepare variables for the link. ?>
|
||||
<?php $link = 'index.php?option=com_modules&task=module.add&client_id=' . $this->state->get('client_id', 0) . $this->modalLink . '&eid=' . $item->extension_id; ?>
|
||||
<?php $name = $this->escape($item->name); ?>
|
||||
<?php $desc = HTMLHelper::_('string.truncate', $this->escape(strip_tags($item->desc)), 200); ?>
|
||||
<a href="<?php echo Route::_($link); ?>" class="new-module mb-3 comModulesSelectCard"
|
||||
<?php echo !empty($function) ? 'data-function="' . $this->escape($function) . '"' : ''; ?>
|
||||
aria-label="<?php echo Text::sprintf('COM_MODULES_SELECT_MODULE', $name); ?>">
|
||||
<div class="new-module-details">
|
||||
<h3 class="new-module-title"><?php echo $name; ?></h3>
|
||||
<p class="new-module-caption p-0">
|
||||
<?php echo $desc; ?>
|
||||
</p>
|
||||
</div>
|
||||
<span class="new-module-link">
|
||||
<span class="icon-plus" aria-hidden="true"></span>
|
||||
</span>
|
||||
</a>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
18
administrator/components/com_modules/tmpl/select/modal.php
Normal file
18
administrator/components/com_modules/tmpl/select/modal.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage com_modules
|
||||
*
|
||||
* @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$this->modalLink = '&tmpl=component&view=module&layout=modal';
|
||||
?>
|
||||
<div class="container-popup">
|
||||
<?php $this->setLayout('default'); ?>
|
||||
<?php echo $this->loadTemplate(); ?>
|
||||
</div>
|
||||
Reference in New Issue
Block a user