mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-10-31 18:52:39 +00:00
55 lines
1.7 KiB
PHP
55 lines
1.7 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Patch testing component for the Joomla! CMS
|
||
|
*
|
||
|
* @copyright Copyright (C) 2011 - 2012 Ian MacLennan, Copyright (C) 2013 - 2018 Open Source Matters, Inc. All rights reserved.
|
||
|
* @license GNU General Public License version 2 or later
|
||
|
*/
|
||
|
|
||
|
defined('_JEXEC') or die;
|
||
|
|
||
|
use Joomla\CMS\Dispatcher\ComponentDispatcherFactoryInterface;
|
||
|
use Joomla\CMS\Extension\ComponentInterface;
|
||
|
use Joomla\CMS\Extension\Service\Provider\ComponentDispatcherFactory;
|
||
|
use Joomla\CMS\Extension\Service\Provider\MVCFactory;
|
||
|
use Joomla\CMS\MVC\Factory\MVCFactoryInterface;
|
||
|
use Joomla\Component\Patchtester\Administrator\Extension\PatchtesterComponent;
|
||
|
use Joomla\DI\Container;
|
||
|
use Joomla\DI\ServiceProviderInterface;
|
||
|
|
||
|
/**
|
||
|
* The patch tester 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)
|
||
|
{
|
||
|
$container->registerServiceProvider(new MVCFactory('\\Joomla\\Component\\Patchtester'));
|
||
|
$container->registerServiceProvider(new ComponentDispatcherFactory('\\Joomla\\Component\\Patchtester'));
|
||
|
|
||
|
$container->set(
|
||
|
ComponentInterface::class,
|
||
|
function (Container $container) {
|
||
|
require_once dirname(__DIR__) . '/vendor/autoload.php';
|
||
|
|
||
|
$component = new PatchtesterComponent($container->get(ComponentDispatcherFactoryInterface::class));
|
||
|
|
||
|
$component->setMVCFactory($container->get(MVCFactoryInterface::class));
|
||
|
|
||
|
return $component;
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
};
|