2024-03-09 19:52:51 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
|
|
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
2024-04-27 14:00:36 +00:00
|
|
|
// The power autoloader for this project (JPATH_ADMINISTRATOR) area.
|
2024-04-21 23:15:03 +00:00
|
|
|
$power_autoloader = JPATH_ADMINISTRATOR . '/components/com_componentbuilder/src/Helper/PowerloaderHelper.php';
|
|
|
|
if (file_exists($power_autoloader))
|
2024-03-09 19:52:51 +00:00
|
|
|
{
|
2024-04-21 23:15:03 +00:00
|
|
|
require_once $power_autoloader;
|
2024-03-09 19:52:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// (soon) use Joomla\CMS\Association\AssociationExtensionInterface;
|
|
|
|
use Joomla\CMS\Categories\CategoryFactoryInterface;
|
|
|
|
use Joomla\CMS\Component\Router\RouterFactoryInterface;
|
|
|
|
use Joomla\CMS\Dispatcher\ComponentDispatcherFactoryInterface;
|
|
|
|
use Joomla\CMS\Extension\ComponentInterface;
|
|
|
|
use Joomla\CMS\Extension\Service\Provider\CategoryFactory;
|
|
|
|
use Joomla\CMS\Extension\Service\Provider\ComponentDispatcherFactory;
|
|
|
|
use Joomla\CMS\Extension\Service\Provider\MVCFactory;
|
|
|
|
use Joomla\CMS\Extension\Service\Provider\RouterFactory;
|
|
|
|
use Joomla\CMS\HTML\Registry;
|
|
|
|
use Joomla\CMS\MVC\Factory\MVCFactoryInterface;
|
|
|
|
use VDM\Component\Componentbuilder\Administrator\Extension\ComponentbuilderComponent;
|
|
|
|
// (soon) use VDM\Component\Componentbuilder\Administrator\Helper\AssociationsHelper;
|
|
|
|
use Joomla\DI\Container;
|
|
|
|
use Joomla\DI\ServiceProviderInterface;
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
\defined('_JEXEC') or die;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The VDM Componentbuilder service provider.
|
|
|
|
*
|
|
|
|
* @since 4.0.0
|
|
|
|
*/
|
|
|
|
return new class () implements ServiceProviderInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Registers the service provider with a DI container.
|
|
|
|
*
|
|
|
|
* @param Container $container The DI container.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
* @since 4.0.0
|
|
|
|
*/
|
|
|
|
public function register(Container $container)
|
|
|
|
{
|
|
|
|
// (soon) $container->set(AssociationExtensionInterface::class, new AssociationsHelper());
|
|
|
|
|
|
|
|
$container->registerServiceProvider(new CategoryFactory('\\VDM\\Component\\Componentbuilder'));
|
|
|
|
$container->registerServiceProvider(new MVCFactory('\\VDM\\Component\\Componentbuilder'));
|
|
|
|
$container->registerServiceProvider(new ComponentDispatcherFactory('\\VDM\\Component\\Componentbuilder'));
|
|
|
|
$container->registerServiceProvider(new RouterFactory('\\VDM\\Component\\Componentbuilder'));
|
|
|
|
|
|
|
|
$container->set(
|
|
|
|
ComponentInterface::class,
|
|
|
|
function (Container $container) {
|
|
|
|
$component = new ComponentbuilderComponent($container->get(ComponentDispatcherFactoryInterface::class));
|
|
|
|
|
|
|
|
$component->setRegistry($container->get(Registry::class));
|
|
|
|
$component->setMVCFactory($container->get(MVCFactoryInterface::class));
|
|
|
|
$component->setCategoryFactory($container->get(CategoryFactoryInterface::class));
|
|
|
|
// (soon) $component->setAssociationExtension($container->get(AssociationExtensionInterface::class));
|
|
|
|
$component->setRouterFactory($container->get(RouterFactoryInterface::class));
|
|
|
|
|
|
|
|
return $component;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|