first commit
This commit is contained in:
20
administrator/modules/mod_title/mod_title.php
Normal file
20
administrator/modules/mod_title/mod_title.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Administrator
|
||||
* @subpackage mod_title
|
||||
*
|
||||
* @copyright (C) 2006 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;
|
||||
|
||||
// Get the component title div
|
||||
if (isset($app->JComponentTitle)) {
|
||||
$title = $app->JComponentTitle;
|
||||
}
|
||||
|
||||
require ModuleHelper::getLayoutPath('mod_title', $params->get('layout', 'default'));
|
||||
Reference in New Issue
Block a user