first commit
This commit is contained in:
71
administrator/templates/atum/html/layouts/chromes/body.php
Normal file
71
administrator/templates/atum/html/layouts/chromes/body.php
Normal file
@ -0,0 +1,71 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage Templates.Atum
|
||||
*
|
||||
* @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;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\CMS\Uri\Uri;
|
||||
|
||||
$module = $displayData['module'];
|
||||
$params = $displayData['params'];
|
||||
|
||||
if ((string) $module->content === '') {
|
||||
return;
|
||||
}
|
||||
|
||||
$id = $module->id;
|
||||
|
||||
// Permission checks
|
||||
$user = Factory::getUser();
|
||||
$canEdit = $user->authorise('core.edit', 'com_modules.module.' . $id) && $user->authorise('core.manage', 'com_modules');
|
||||
$canChange = $user->authorise('core.edit.state', 'com_modules.module.' . $id) && $user->authorise('core.manage', 'com_modules');
|
||||
|
||||
$moduleTag = $params->get('module_tag', 'div');
|
||||
$bootstrapSize = (int) $params->get('bootstrap_size', 6);
|
||||
$moduleClass = $bootstrapSize ? 'col-md-' . $bootstrapSize : 'col-md-12';
|
||||
$headerTag = htmlspecialchars($params->get('header_tag', 'h2'), ENT_QUOTES, 'UTF-8');
|
||||
$moduleClassSfx = $params->get('moduleclass_sfx', '');
|
||||
|
||||
// Temporarily store header class in variable
|
||||
$headerClass = $params->get('header_class');
|
||||
$headerClass = $headerClass ? ' ' . htmlspecialchars($headerClass, ENT_QUOTES, 'UTF-8') : '';
|
||||
|
||||
?>
|
||||
<div class="<?php echo $moduleClass; ?> module-wrapper">
|
||||
<<?php echo $moduleTag; ?> class="card pt-3<?php echo $moduleClassSfx; ?>">
|
||||
<?php if ($canEdit || $canChange) : ?>
|
||||
<?php $dropdownPosition = Factory::getLanguage()->isRtl() ? 'start' : 'end'; ?>
|
||||
<div class="module-actions dropdown">
|
||||
<button type="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="btn" id="dropdownMenuButton-<?php echo $id; ?>">
|
||||
<span class="icon-cogs" aria-hidden="true"></span>
|
||||
<span class="visually-hidden"><?php echo Text::sprintf('JACTION_EDIT_MODULE', $module->title); ?></span>
|
||||
</button>
|
||||
<div class="dropdown-menu dropdown-menu-<?php echo $dropdownPosition; ?>" aria-labelledby="dropdownMenuButton-<?php echo $id; ?>">
|
||||
<?php if ($canEdit) : ?>
|
||||
<?php $uri = Uri::getInstance(); ?>
|
||||
<?php $url = Route::_('index.php?option=com_modules&task=module.edit&id=' . $id . '&return=' . base64_encode($uri)); ?>
|
||||
<a class="dropdown-item" href="<?php echo $url; ?>"><?php echo Text::_('JACTION_EDIT'); ?></a>
|
||||
<?php endif; ?>
|
||||
<?php if ($canChange) : ?>
|
||||
<button type="button" class="dropdown-item unpublish-module" data-module-id="<?php echo $id; ?>"><?php echo Text::_('JACTION_UNPUBLISH'); ?></button>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php if ($module->showtitle) : ?>
|
||||
<<?php echo $headerTag; ?> class="card-header<?php echo $headerClass; ?>"><?php echo $module->title; ?></<?php echo $headerTag; ?>>
|
||||
<?php endif; ?>
|
||||
<div class="module-body">
|
||||
<?php echo $module->content; ?>
|
||||
</div>
|
||||
</<?php echo $moduleTag; ?>>
|
||||
</div>
|
||||
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage Templates.Atum
|
||||
*
|
||||
* @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*
|
||||
* Module chrome for rendering the module in a submenu
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$module = $displayData['module'];
|
||||
|
||||
if ((string) $module->content === '') {
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
<div class="header-item d-flex">
|
||||
<?php echo $module->content; ?>
|
||||
</div>
|
||||
25
administrator/templates/atum/html/layouts/chromes/title.php
Normal file
25
administrator/templates/atum/html/layouts/chromes/title.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage Templates.Atum
|
||||
*
|
||||
* @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*
|
||||
* Module chrome for rendering the module in a submenu
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$module = $displayData['module'];
|
||||
|
||||
if ((string) $module->content === '') {
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
<div class="card-header">
|
||||
<h6><?php echo $module->title; ?></h6>
|
||||
</div>
|
||||
<?php echo $module->content; ?>
|
||||
87
administrator/templates/atum/html/layouts/chromes/well.php
Normal file
87
administrator/templates/atum/html/layouts/chromes/well.php
Normal file
@ -0,0 +1,87 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage Templates.Atum
|
||||
*
|
||||
* @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;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\CMS\Uri\Uri;
|
||||
|
||||
$module = $displayData['module'];
|
||||
$params = $displayData['params'];
|
||||
$attribs = $displayData['attribs'];
|
||||
|
||||
if ((string) $module->content === '') {
|
||||
return;
|
||||
}
|
||||
|
||||
$id = $module->id;
|
||||
|
||||
// Permission checks
|
||||
$user = Factory::getUser();
|
||||
$canEdit = $user->authorise('core.edit', 'com_modules.module.' . $id) && $user->authorise('core.manage', 'com_modules');
|
||||
$canChange = $user->authorise('core.edit.state', 'com_modules.module.' . $id) && $user->authorise('core.manage', 'com_modules');
|
||||
|
||||
$moduleTag = $params->get('module_tag', 'div');
|
||||
$bootstrapSize = (int) $params->get('bootstrap_size', 12);
|
||||
$moduleClass = $bootstrapSize ? 'col-md-' . $bootstrapSize : 'col-md-12';
|
||||
$headerTag = htmlspecialchars($params->get('header_tag', 'h2'), ENT_QUOTES, 'UTF-8');
|
||||
$moduleClassSfx = $params->get('moduleclass_sfx', '');
|
||||
|
||||
// Add class from attributes if any
|
||||
if (!empty($attribs['class'])) {
|
||||
$moduleClass .= ' ' . htmlspecialchars($attribs['class'], ENT_QUOTES, 'UTF-8');
|
||||
}
|
||||
|
||||
// Temporarily store header class in variable
|
||||
$headerClass = $params->get('header_class') ? ' class="' . htmlspecialchars($params->get('header_class'), ENT_QUOTES, 'UTF-8') . '"' : '';
|
||||
|
||||
// Get the module icon
|
||||
$headerIcon = $params->get('header_icon') ? '<span class="' . htmlspecialchars($params->get('header_icon'), ENT_QUOTES, 'UTF-8') . '" aria-hidden="true"></span>' : '';
|
||||
|
||||
?>
|
||||
<div class="<?php echo $moduleClass; ?> module-wrapper">
|
||||
<<?php echo $moduleTag; ?> class="card mb-3 <?php echo $moduleClassSfx; ?>">
|
||||
<?php if ($canEdit || $canChange || $headerIcon || $module->showtitle) : ?>
|
||||
<div class="card-header">
|
||||
<?php if ($canEdit || $canChange) : ?>
|
||||
<?php $dropdownPosition = Factory::getLanguage()->isRtl() ? 'start' : 'end'; ?>
|
||||
<div class="module-actions dropdown">
|
||||
<button type="button" data-bs-toggle="dropdown" data-bs-display="static" aria-haspopup="true" aria-expanded="false" class="btn" id="dropdownMenuButton-<?php echo $id; ?>">
|
||||
<span class="icon-cogs" aria-hidden="true"></span>
|
||||
<span class="visually-hidden"><?php echo Text::sprintf('JACTION_EDIT_MODULE', $module->title); ?></span>
|
||||
</button>
|
||||
<div class="dropdown-menu dropdown-menu-<?php echo $dropdownPosition; ?>" aria-labelledby="dropdownMenuButton-<?php echo $id; ?>">
|
||||
<?php if ($canEdit) : ?>
|
||||
<?php $uri = Uri::getInstance(); ?>
|
||||
<?php $url = Route::_('index.php?option=com_modules&task=module.edit&id=' . $id . '&return=' . base64_encode($uri)); ?>
|
||||
<a class="dropdown-item" href="<?php echo $url; ?>"><?php echo Text::_('JACTION_EDIT'); ?></a>
|
||||
<?php endif; ?>
|
||||
<?php if ($canChange) : ?>
|
||||
<button type="button" class="dropdown-item unpublish-module" data-module-id="<?php echo $id; ?>"><?php echo Text::_('JACTION_UNPUBLISH'); ?></button>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($module->showtitle) : ?>
|
||||
<<?php echo $headerTag; ?><?php echo $headerClass; ?>>
|
||||
<?php echo $headerIcon; ?>
|
||||
<?php echo htmlspecialchars($module->title, ENT_QUOTES, 'UTF-8'); ?>
|
||||
</<?php echo $headerTag; ?>>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<div class="card-body">
|
||||
<?php echo $module->content; ?>
|
||||
</div>
|
||||
</<?php echo $moduleTag; ?>>
|
||||
</div>
|
||||
Reference in New Issue
Block a user