feat: add system plugin extension class

This commit is contained in:
2026-06-27 20:20:07 +00:00
parent 22eb21deb0
commit 2aa7b638e9
@@ -0,0 +1,23 @@
<?php
/**
* @copyright Copyright (C) 2026 Moko Consulting <hello@mokoconsulting.tech>
* @license GPL-3.0-or-later
*/
namespace Moko\Plugin\System\MokoSuiteBooking\Extension;
defined('_JEXEC') or die;
use Joomla\CMS\Plugin\CMSPlugin;
use Joomla\Event\DispatcherInterface;
use Psr\Container\ContainerInterface;
final class Booking extends CMSPlugin
{
protected $autoloadLanguage = true;
public function boot(ContainerInterface $container): void
{
}
}