[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/src/Service/Provider/ -> Pathway.php (source)

   1  <?php
   2  
   3  /**
   4   * Joomla! Content Management System
   5   *
   6   * @copyright  (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
   7   * @license    GNU General Public License version 2 or later; see LICENSE.txt
   8   */
   9  
  10  namespace Joomla\CMS\Service\Provider;
  11  
  12  use Joomla\CMS\Application\SiteApplication;
  13  use Joomla\CMS\Pathway\SitePathway;
  14  use Joomla\DI\Container;
  15  use Joomla\DI\ServiceProviderInterface;
  16  
  17  // phpcs:disable PSR1.Files.SideEffects
  18  \defined('JPATH_PLATFORM') or die;
  19  // phpcs:enable PSR1.Files.SideEffects
  20  
  21  /**
  22   * Service provider for the application's pathway dependency
  23   *
  24   * @since  4.0.0
  25   */
  26  class Pathway implements ServiceProviderInterface
  27  {
  28      /**
  29       * Registers the service provider with a DI container.
  30       *
  31       * @param   Container  $container  The DI container.
  32       *
  33       * @return  void
  34       *
  35       * @since   4.0.0
  36       */
  37      public function register(Container $container)
  38      {
  39          $container->alias('SitePathway', SitePathway::class)
  40              ->alias('JPathwaySite', SitePathway::class)
  41              ->alias('pathway.site', SitePathway::class)
  42              ->share(
  43                  SitePathway::class,
  44                  function (Container $container) {
  45                      return new SitePathway($container->get(SiteApplication::class));
  46                  },
  47                  true
  48              );
  49  
  50          $container->alias('Pathway', \Joomla\CMS\Pathway\Pathway::class)
  51              ->alias('JPathway', \Joomla\CMS\Pathway\Pathway::class)
  52              ->alias('pathway', \Joomla\CMS\Pathway\Pathway::class)
  53              ->share(
  54                  \Joomla\CMS\Pathway\Pathway::class,
  55                  function (Container $container) {
  56                      return new \Joomla\CMS\Pathway\Pathway();
  57                  },
  58                  true
  59              );
  60      }
  61  }


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