85 lines
3.4 KiB
PHP
85 lines
3.4 KiB
PHP
<?php
|
|
/*----------------------------------------------------------------------------------| io.vdm.dev |----/
|
|
Vast Development Method
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
@package getBible.net
|
|
|
|
@created 3rd December, 2015
|
|
@author Llewellyn van der Merwe <https://getbible.net>
|
|
@git Get Bible <https://git.vdm.dev/getBible>
|
|
@github Get Bible <https://github.com/getBible>
|
|
@support Get Bible <https://git.vdm.dev/getBible/support>
|
|
@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_getbible/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 TrueChristianBible\Component\GetBible\Administrator\Extension\GetbibleComponent;
|
|
// (soon) use TrueChristianBible\Component\GetBible\Administrator\Helper\AssociationsHelper;
|
|
use Joomla\DI\Container;
|
|
use Joomla\DI\ServiceProviderInterface;
|
|
|
|
// No direct access to this file
|
|
\defined('_JEXEC') or die;
|
|
|
|
/**
|
|
* The TrueChristianBible Getbible 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('\\TrueChristianBible\\Component\\Getbible'));
|
|
$container->registerServiceProvider(new MVCFactory('\\TrueChristianBible\\Component\\Getbible'));
|
|
$container->registerServiceProvider(new ComponentDispatcherFactory('\\TrueChristianBible\\Component\\Getbible'));
|
|
$container->registerServiceProvider(new RouterFactory('\\TrueChristianBible\\Component\\Getbible'));
|
|
|
|
$container->set(
|
|
ComponentInterface::class,
|
|
function (Container $container) {
|
|
$component = new GetbibleComponent($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;
|
|
}
|
|
);
|
|
}
|
|
};
|