60 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * @package       Joomla.Administrator
 | |
|  * @subpackage    com_guidedtours
 | |
|  *
 | |
|  * @copyright     (C) 2023 Open Source Matters, Inc. <https://www.joomla.org>
 | |
|  * @license       GNU General Public License version 2 or later; see LICENSE.txt
 | |
|  */
 | |
| 
 | |
| \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\HTML\Registry;
 | |
| use Joomla\CMS\MVC\Factory\MVCFactoryInterface;
 | |
| use Joomla\Component\Guidedtours\Administrator\Extension\GuidedtoursComponent;
 | |
| use Joomla\DI\Container;
 | |
| use Joomla\DI\ServiceProviderInterface;
 | |
| 
 | |
| // phpcs:disable PSR1.Files.SideEffects
 | |
| \defined('_JEXEC') or die;
 | |
| // phpcs:enable PSR1.Files.SideEffects
 | |
| 
 | |
| /**
 | |
|  * The Guidedtours service provider.
 | |
|  *
 | |
|  * @since 4.3.0
 | |
|  */
 | |
| return new class () implements ServiceProviderInterface {
 | |
|     /**
 | |
|      * Registers the service provider with a DI container.
 | |
|      *
 | |
|      * @param   Container $container The DI container.
 | |
|      *
 | |
|      * @return void
 | |
|      *
 | |
|      * @since 4.3.0
 | |
|      */
 | |
|     public function register(Container $container)
 | |
|     {
 | |
|         $container->registerServiceProvider(new MVCFactory('\\Joomla\\Component\\Guidedtours'));
 | |
|         $container->registerServiceProvider(new ComponentDispatcherFactory('\\Joomla\\Component\\Guidedtours'));
 | |
| 
 | |
|         $container->set(
 | |
|             ComponentInterface::class,
 | |
|             function (Container $container) {
 | |
|                 $component = new GuidedtoursComponent($container->get(ComponentDispatcherFactoryInterface::class));
 | |
| 
 | |
|                 $component->setRegistry($container->get(Registry::class));
 | |
|                 $component->setMVCFactory($container->get(MVCFactoryInterface::class));
 | |
| 
 | |
|                 return $component;
 | |
|             }
 | |
|         );
 | |
|     }
 | |
| };
 |