diff --git a/source/com_mokosuitebooking/admin/src/View/BookingLocations/HtmlView.php b/source/com_mokosuitebooking/admin/src/View/BookingLocations/HtmlView.php new file mode 100644 index 0000000..cf9b450 --- /dev/null +++ b/source/com_mokosuitebooking/admin/src/View/BookingLocations/HtmlView.php @@ -0,0 +1,23 @@ + + * @license GPL-3.0-or-later + */ + +namespace Moko\Component\MokoSuiteBooking\Administrator\View\BookingLocations; + +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('MokoSuiteBooking: Locations', 'location'); + + parent::display($tpl); + } +}