[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/administrator/components/com_privacy/services/ -> provider.php (source)

   1  <?php
   2  
   3  /**
   4   * @package     Joomla.Administrator
   5   * @subpackage  com_privacy
   6   *
   7   * @copyright   (C) 2019 Open Source Matters, Inc. <https://www.joomla.org>
   8   * @license     GNU General Public License version 2 or later; see LICENSE.txt
   9   */
  10  
  11  defined('_JEXEC') or die;
  12  
  13  use Joomla\CMS\Component\Router\RouterFactoryInterface;
  14  use Joomla\CMS\Dispatcher\ComponentDispatcherFactoryInterface;
  15  use Joomla\CMS\Extension\ComponentInterface;
  16  use Joomla\CMS\Extension\Service\Provider\ComponentDispatcherFactory;
  17  use Joomla\CMS\Extension\Service\Provider\MVCFactory;
  18  use Joomla\CMS\Extension\Service\Provider\RouterFactory;
  19  use Joomla\CMS\HTML\Registry;
  20  use Joomla\CMS\MVC\Factory\MVCFactoryInterface;
  21  use Joomla\Component\Privacy\Administrator\Extension\PrivacyComponent;
  22  use Joomla\DI\Container;
  23  use Joomla\DI\ServiceProviderInterface;
  24  
  25  /**
  26   * The privacy component service provider.
  27   *
  28   * @since  4.0.0
  29   */
  30  return new class implements ServiceProviderInterface
  31  {
  32      /**
  33       * Registers the service provider with a DI container.
  34       *
  35       * @param   Container  $container  The DI container.
  36       *
  37       * @return  void
  38       *
  39       * @since   4.0.0
  40       */
  41      public function register(Container $container)
  42      {
  43          $container->registerServiceProvider(new MVCFactory('\\Joomla\\Component\\Privacy'));
  44          $container->registerServiceProvider(new ComponentDispatcherFactory('\\Joomla\\Component\\Privacy'));
  45          $container->registerServiceProvider(new RouterFactory('\\Joomla\\Component\\Privacy'));
  46  
  47          $container->set(
  48              ComponentInterface::class,
  49              function (Container $container) {
  50                  $component = new PrivacyComponent($container->get(ComponentDispatcherFactoryInterface::class));
  51  
  52                  $component->setMVCFactory($container->get(MVCFactoryInterface::class));
  53                  $component->setRegistry($container->get(Registry::class));
  54                  $component->setRouterFactory($container->get(RouterFactoryInterface::class));
  55  
  56                  return $component;
  57              }
  58          );
  59      }
  60  };


Generated: Wed Sep 7 05:41:13 2022 Chilli.vc Blog - For Webmaster,Blog-Writer,System Admin and Domainer