[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/administrator/components/com_scheduler/src/Extension/ -> SchedulerComponent.php (source)

   1  <?php
   2  
   3  /**
   4   * @package     Joomla.Administrator
   5   * @subpackage  com_scheduler
   6   *
   7   * @copyright   (C) 2021 Open Source Matters, Inc. <https://www.joomla.org>
   8   * @license     GNU General Public License version 2 or later; see LICENSE.txt
   9   */
  10  
  11  namespace Joomla\Component\Scheduler\Administrator\Extension;
  12  
  13  use Joomla\CMS\Extension\BootableExtensionInterface;
  14  use Joomla\CMS\Extension\MVCComponent;
  15  use Joomla\CMS\HTML\HTMLRegistryAwareTrait;
  16  use Psr\Container\ContainerInterface;
  17  
  18  // phpcs:disable PSR1.Files.SideEffects
  19  \defined('_JEXEC') or die;
  20  // phpcs:enable PSR1.Files.SideEffects
  21  
  22  /**
  23   * Component class for com_scheduler.
  24   *
  25   * @since  4.1.0
  26   * @todo   Set up logger(s) here.
  27   */
  28  class SchedulerComponent extends MVCComponent implements BootableExtensionInterface
  29  {
  30      use HTMLRegistryAwareTrait;
  31  
  32      /**
  33       * Booting the extension. This is the function to set up the environment of the extension like
  34       * registering new class loaders, etc.
  35       *
  36       * If required, some initial set up can be done from services of the container, eg.
  37       * registering HTML services.
  38       *
  39       * @param   ContainerInterface  $container  The container
  40       *
  41       * @return void
  42       *
  43       * @since  4.1.0
  44       */
  45      public function boot(ContainerInterface $container): void
  46      {
  47          // Pass
  48      }
  49  }


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