72 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?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>
 |