| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 2.1.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Event;
- /**
- * Represents the transport class of events across the system. It receives a name, subject and an optional
- * payload. The name can be any string that uniquely identifies the event across the application, while the subject
- * represents the object that the event applies to.
- *
- * @property string $name (deprecated) Name of the event
- * @property object $subject (deprecated) The object this event applies to
- * @property mixed $result (deprecated) Property used to retain the result value of the event listeners
- * @property array $data (deprecated) Custom data for the method that receives the event
- */
- class Event
- {
- /**
- * Name of the event
- *
- * @var string
- */
- protected $_name = null;
- /**
- * The object this event applies to (usually the same object that generates the event)
- *
- * @var object
- */
- protected $_subject;
- /**
- * Custom data for the method that receives the event
- *
- * @var array
- */
- protected $_data;
- /**
- * Property used to retain the result value of the event listeners
- *
- * @var mixed
- */
- public $result = null;
- /**
- * Flags an event as stopped or not, default is false
- *
- * @var bool
- */
- protected $_stopped = false;
- /**
- * Constructor
- *
- * ### Examples of usage:
- *
- * ```
- * $event = new Event('Order.afterBuy', $this, ['buyer' => $userData]);
- * $event = new Event('User.afterRegister', $UserModel);
- * ```
- *
- * @param string $name Name of the event
- * @param object|null $subject the object that this event applies to (usually the object that is generating the event)
- * @param array|\ArrayAccess|null $data any value you wish to be transported with this event to it can be read by listeners
- */
- public function __construct($name, $subject = null, $data = null)
- {
- $this->_name = $name;
- $this->_data = (array)$data;
- $this->_subject = $subject;
- }
- /**
- * Provides read-only access for the name and subject properties.
- *
- * @param string $attribute Attribute name.
- * @return mixed
- * @deprecated Public properties will be removed.
- */
- public function __get($attribute)
- {
- if ($attribute === 'name' || $attribute === 'subject') {
- return $this->{$attribute}();
- }
- if ($attribute === 'data') {
- return $this->_data;
- }
- if ($attribute === 'result') {
- return $this->result;
- }
- }
- /**
- * Provides backward compatibility for write access to data and result properties.
- *
- * @param string $attribute Attribute name.
- * @param mixed $value The value to set.
- * @return void
- * @deprecated Public properties will be removed.
- */
- public function __set($attribute, $value)
- {
- if ($attribute === 'data') {
- $this->_data = (array)$value;
- }
- if ($attribute === 'result') {
- $this->result = $value;
- }
- }
- /**
- * Returns the name of this event. This is usually used as the event identifier
- *
- * @return string
- * @deprecated 3.4.0 use getName() instead.
- */
- public function name()
- {
- return $this->_name;
- }
- /**
- * Returns the name of this event. This is usually used as the event identifier
- *
- * @return string
- */
- public function getName()
- {
- return $this->_name;
- }
- /**
- * Returns the subject of this event
- *
- * @return object
- * @deprecated 3.4.0 use getSubject() instead.
- */
- public function subject()
- {
- return $this->_subject;
- }
- /**
- * Returns the subject of this event
- *
- * @return object
- */
- public function getSubject()
- {
- return $this->_subject;
- }
- /**
- * Stops the event from being used anymore
- *
- * @return void
- */
- public function stopPropagation()
- {
- $this->_stopped = true;
- }
- /**
- * Check if the event is stopped
- *
- * @return bool True if the event is stopped
- */
- public function isStopped()
- {
- return $this->_stopped;
- }
- /**
- * The result value of the event listeners
- *
- * @return mixed
- * @deprecated 3.4.0 use getResult() instead.
- */
- public function result()
- {
- return $this->result;
- }
- /**
- * The result value of the event listeners
- *
- * @return mixed
- */
- public function getResult()
- {
- return $this->result;
- }
- /**
- * Listeners can attach a result value to the event.
- *
- * @param mixed $value The value to set.
- * @return $this
- */
- public function setResult($value = null)
- {
- $this->result = $value;
- return $this;
- }
- /**
- * Access the event data/payload.
- *
- * @param string|null $key The data payload element to return, or null to return all data.
- * @return array|mixed|null The data payload if $key is null, or the data value for the given $key. If the $key does not
- * exist a null value is returned.
- * @deprecated 3.4.0 use getData() instead.
- */
- public function data($key = null)
- {
- return $this->getData($key);
- }
- /**
- * Access the event data/payload.
- *
- * @param string|null $key The data payload element to return, or null to return all data.
- * @return array|mixed|null The data payload if $key is null, or the data value for the given $key. If the $key does not
- * exist a null value is returned.
- */
- public function getData($key = null)
- {
- if ($key !== null) {
- return isset($this->_data[$key]) ? $this->_data[$key] : null;
- }
- return (array)$this->_data;
- }
- /**
- * Assigns a value to the data/payload of this event.
- *
- * @param array|string $key An array will replace all payload data, and a key will set just that array item.
- * @param mixed $value The value to set.
- * @return $this
- */
- public function setData($key, $value = null)
- {
- if (is_array($key)) {
- $this->_data = $key;
- } else {
- $this->_data[$key] = $value;
- }
- return $this;
- }
- }
|