88 lines
3.6 KiB
PHP
88 lines
3.6 KiB
PHP
<?php
|
|
/*----------------------------------------------------------------------------------| www.vdm.io |----/
|
|
Nampharm
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
@version 1.0.1
|
|
@build 21st August, 2024
|
|
@created 24th May, 2024
|
|
@package Subform Power
|
|
@subpackage provider.php
|
|
@author Oh Martin <https://nampharm.com.na>
|
|
@copyright Copyright (C) 2015. All Rights Reserved
|
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
____ _____ _____ __ __ __ __ ___ _____ __ __ ____ _____ _ _ ____ _ _ ____
|
|
(_ _)( _ )( _ )( \/ )( ) /__\ / __)( _ )( \/ )( _ \( _ )( \( )( ___)( \( )(_ _)
|
|
.-_)( )(_)( )(_)( ) ( )(__ /(__)\ ( (__ )(_)( ) ( )___/ )(_)( ) ( )__) ) ( )(
|
|
\____) (_____)(_____)(_/\/\_)(____)(__)(__) \___)(_____)(_/\/\_)(__) (_____)(_)\_)(____)(_)\_) (__)
|
|
|
|
/------------------------------------------------------------------------------------------------------*/
|
|
|
|
// The power autoloader for this project (JPATH_ADMINISTRATOR) area.
|
|
$power_autoloader = JPATH_ADMINISTRATOR . '/components/com_subformpower/src/Helper/PowerloaderHelper.php';
|
|
if (file_exists($power_autoloader))
|
|
{
|
|
require_once $power_autoloader;
|
|
}
|
|
|
|
// (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 JCB\Component\Subformpower\Administrator\Extension\SubformpowerComponent;
|
|
// (soon) use JCB\Component\Subformpower\Administrator\Helper\AssociationsHelper;
|
|
use Joomla\DI\Container;
|
|
use Joomla\DI\ServiceProviderInterface;
|
|
|
|
// No direct access to this file
|
|
\defined('_JEXEC') or die;
|
|
|
|
/**
|
|
* The JCB Subformpower 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('\\JCB\\Component\\Subformpower'));
|
|
$container->registerServiceProvider(new MVCFactory('\\JCB\\Component\\Subformpower'));
|
|
$container->registerServiceProvider(new ComponentDispatcherFactory('\\JCB\\Component\\Subformpower'));
|
|
$container->registerServiceProvider(new RouterFactory('\\JCB\\Component\\Subformpower'));
|
|
|
|
$container->set(
|
|
ComponentInterface::class,
|
|
function (Container $container) {
|
|
$component = new SubformpowerComponent($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;
|
|
}
|
|
);
|
|
}
|
|
};
|