[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/src/Extension/ -> ExtensionManagerInterface.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  // phpcs:disable PSR1.Files.SideEffects
  13  \defined('JPATH_PLATFORM') or die;
  14  // phpcs:enable PSR1.Files.SideEffects
  15  
  16  /**
  17   * Loads extensions.
  18   *
  19   * @since  4.0.0
  20   */
  21  interface ExtensionManagerInterface
  22  {
  23      /**
  24       * Boots the component with the given name.
  25       *
  26       * @param   string  $component  The component to boot.
  27       *
  28       * @return  ComponentInterface
  29       *
  30       * @since   4.0.0
  31       */
  32      public function bootComponent($component): ComponentInterface;
  33  
  34      /**
  35       * Boots the module with the given name.
  36       *
  37       * @param   string  $module           The module to boot
  38       * @param   string  $applicationName  The application name
  39       *
  40       * @return  ModuleInterface
  41       *
  42       * @since   4.0.0
  43       */
  44      public function bootModule($module, $applicationName): ModuleInterface;
  45  
  46      /**
  47       * Boots the plugin with the given name and type.
  48       *
  49       * @param   string  $plugin  The plugin name
  50       * @param   string  $type    The type of the plugin
  51       *
  52       * @return  PluginInterface
  53       *
  54       * @since   4.0.0
  55       */
  56      public function bootPlugin($plugin, $type): PluginInterface;
  57  }


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