[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/src/Event/Model/ -> BeforeBatchEvent.php (source)

   1  <?php
   2  
   3  /**
   4   * Joomla! Content Management System
   5   *
   6   * @copyright  (C) 2020 Open Source Matters, Inc. <https://www.joomla.org>
   7   * @license    GNU General Public License version 2 or later; see LICENSE
   8   */
   9  
  10  namespace Joomla\CMS\Event\Model;
  11  
  12  use BadMethodCallException;
  13  use Joomla\CMS\Event\AbstractImmutableEvent;
  14  
  15  // phpcs:disable PSR1.Files.SideEffects
  16  \defined('JPATH_PLATFORM') or die;
  17  // phpcs:enable PSR1.Files.SideEffects
  18  
  19  /**
  20   * Event class for modifying a table object before a batch event is applied
  21   *
  22   * @since  4.0.0
  23   */
  24  class BeforeBatchEvent extends AbstractImmutableEvent
  25  {
  26      /**
  27       * Constructor.
  28       *
  29       * @param   string  $name       The event name.
  30       * @param   array   $arguments  The event arguments.
  31       *
  32       * @throws  BadMethodCallException
  33       *
  34       * @since   4.0.0
  35       */
  36      public function __construct($name, array $arguments = array())
  37      {
  38          if (!\array_key_exists('src', $arguments)) {
  39              throw new BadMethodCallException("Argument 'src' is required for event $name");
  40          }
  41  
  42          if (!\array_key_exists('type', $arguments)) {
  43              throw new BadMethodCallException("Argument 'type' is required for event $name");
  44          }
  45  
  46          parent::__construct($name, $arguments);
  47      }
  48  }


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