[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/src/Extension/ -> BootableExtensionInterface.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\Extension;
  11  
  12  use Psr\Container\ContainerInterface;
  13  
  14  // phpcs:disable PSR1.Files.SideEffects
  15  \defined('JPATH_PLATFORM') or die;
  16  // phpcs:enable PSR1.Files.SideEffects
  17  
  18  /**
  19   * Interface which defines that an extension can be booted.
  20   *
  21   * @since  4.0.0
  22   */
  23  interface BootableExtensionInterface
  24  {
  25      /**
  26       * Booting the extension. This is the function to set up the environment of the extension like
  27       * registering new class loaders, etc.
  28       *
  29       * If required, some initial set up can be done from services of the container, eg.
  30       * registering HTML services.
  31       *
  32       * @param   ContainerInterface  $container  The container
  33       *
  34       * @return  void
  35       *
  36       * @since   4.0.0
  37       */
  38      public function boot(ContainerInterface $container);
  39  }


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