00d44256b4
Rebrand all 17 sub-extensions from mokowaas to mokosuite naming, including component, plugins, modules, task plugins, and webservices. Updates package manifest, workflows, docs, wiki, and issue templates. Adds new plg_system_mokosuite_license extension.
24 lines
708 B
PHP
24 lines
708 B
PHP
<?php
|
|
/**
|
|
* @package MokoSuite
|
|
* @subpackage mod_mokosuite_cache
|
|
* @copyright Copyright (C) 2026 Moko Consulting. All rights reserved.
|
|
* @license GNU General Public License version 3 or later; see LICENSE
|
|
*/
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\Extension\Service\Provider\Module;
|
|
use Joomla\CMS\Extension\Service\Provider\ModuleDispatcherFactory;
|
|
use Joomla\DI\Container;
|
|
use Joomla\DI\ServiceProviderInterface;
|
|
|
|
return new class implements ServiceProviderInterface
|
|
{
|
|
public function register(Container $container): void
|
|
{
|
|
$container->registerServiceProvider(new ModuleDispatcherFactory('\\Moko\\Module\\MokoSuiteCache'));
|
|
$container->registerServiceProvider(new Module());
|
|
}
|
|
};
|