[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/src/Event/Table/ -> BeforeBindEvent.php (source)

   1  <?php
   2  
   3  /**
   4   * Joomla! Content Management System
   5   *
   6   * @copyright  (C) 2016 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\Table;
  11  
  12  use BadMethodCallException;
  13  
  14  // phpcs:disable PSR1.Files.SideEffects
  15  \defined('JPATH_PLATFORM') or die;
  16  // phpcs:enable PSR1.Files.SideEffects
  17  
  18  /**
  19   * Event class for JTable's onBeforeBind event
  20   *
  21   * @since  4.0.0
  22   */
  23  class BeforeBindEvent extends AbstractEvent
  24  {
  25      /**
  26       * Constructor.
  27       *
  28       * Mandatory arguments:
  29       * subject      JTableInterface The table we are operating on
  30       * src          mixed           An associative array or object to bind to the JTable instance.
  31       * ignore       mixed           An optional array or space separated list of properties to ignore while binding.
  32       *
  33       * @param   string  $name       The event name.
  34       * @param   array   $arguments  The event arguments.
  35       *
  36       * @throws  BadMethodCallException
  37       */
  38      public function __construct($name, array $arguments = array())
  39      {
  40          if (!\array_key_exists('src', $arguments)) {
  41              throw new BadMethodCallException("Argument 'src' is required for event $name");
  42          }
  43  
  44          if (!\array_key_exists('ignore', $arguments)) {
  45              throw new BadMethodCallException("Argument 'ignore' is required for event $name");
  46          }
  47  
  48          parent::__construct($name, $arguments);
  49      }
  50  
  51      /**
  52       * Setter for the src argument
  53       *
  54       * @param   mixed  $value  The value to set
  55       *
  56       * @return  mixed
  57       *
  58       * @throws  BadMethodCallException  if the argument is not of the expected type
  59       */
  60      protected function setSrc($value)
  61      {
  62          if (!empty($value) && !\is_object($value) && !\is_array($value)) {
  63              throw new BadMethodCallException("Argument 'src' of event {$this->name} must be empty, object or array");
  64          }
  65  
  66          return $value;
  67      }
  68  
  69      /**
  70       * Setter for the ignore argument
  71       *
  72       * @param   mixed  $value  The value to set
  73       *
  74       * @return  mixed
  75       *
  76       * @throws  BadMethodCallException  if the argument is not of the expected type
  77       */
  78      protected function setIgnore($value)
  79      {
  80          if (!empty($value) && !\is_array($value)) {
  81              throw new BadMethodCallException("Argument 'ignore' of event {$this->name} must be empty or array");
  82          }
  83  
  84          return $value;
  85      }
  86  }


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