12 lines
415 B
PHP
12 lines
415 B
PHP
<?php
|
|
namespace Moko\Component\MokoSuiteConstruction\Administrator\View\ConstructionDashboard;
|
|
defined('_JEXEC') or die;
|
|
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
|
|
use Joomla\CMS\Toolbar\ToolbarHelper;
|
|
class HtmlView extends BaseHtmlView {
|
|
public function display($tpl = null): void {
|
|
ToolbarHelper::title('MokoSuite Construction - ConstructionDashboard');
|
|
parent::display($tpl);
|
|
}
|
|
}
|