You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					556 lines
				
				18 KiB
			
		
		
			
		
	
	
					556 lines
				
				18 KiB
			| 
											15 years ago
										 | <?php
 | ||
| 
											14 years ago
										 | /**
 | ||
|  |  * @link http://www.yiiframework.com/
 | ||
| 
											13 years ago
										 |  * @copyright Copyright (c) 2008 Yii Software LLC
 | ||
| 
											14 years ago
										 |  * @license http://www.yiiframework.com/license/
 | ||
|  |  */
 | ||
| 
											15 years ago
										 | 
 | ||
|  | namespace yii\base;
 | ||
|  | 
 | ||
| 
											13 years ago
										 | use Yii;
 | ||
|  | 
 | ||
| 
											14 years ago
										 | /**
 | ||
| 
											13 years ago
										 |  * @include @yii/base/Component.md
 | ||
| 
											14 years ago
										 |  * @author Qiang Xue <qiang.xue@gmail.com>
 | ||
| 
											14 years ago
										 |  * @since 2.0
 | ||
| 
											14 years ago
										 |  */
 | ||
| 
											13 years ago
										 | class Component extends Object
 | ||
| 
											15 years ago
										 | {
 | ||
| 
											14 years ago
										 | 	/**
 | ||
| 
											13 years ago
										 | 	 * @var array the attached event handlers (event name => handlers)
 | ||
| 
											14 years ago
										 | 	 */
 | ||
| 
											13 years ago
										 | 	private $_events;
 | ||
| 
											14 years ago
										 | 	/**
 | ||
|  | 	 * @var Behavior[] the attached behaviors (behavior name => behavior)
 | ||
|  | 	 */
 | ||
| 
											13 years ago
										 | 	private $_behaviors;
 | ||
| 
											15 years ago
										 | 
 | ||
|  | 	/**
 | ||
| 
											14 years ago
										 | 	 * Returns the value of a component property.
 | ||
|  | 	 * This method will check in the following order and act accordingly:
 | ||
|  | 	 *
 | ||
|  | 	 *  - a property defined by a getter: return the getter result
 | ||
|  | 	 *  - a property of a behavior: return the behavior property value
 | ||
|  | 	 *
 | ||
|  | 	 * Do not call this method directly as it is a PHP magic method that
 | ||
|  | 	 * will be implicitly called when executing `$value = $component->property;`.
 | ||
|  | 	 * @param string $name the property name
 | ||
|  | 	 * @return mixed the property value, event handlers attached to the event,
 | ||
| 
											13 years ago
										 | 	 * the behavior, or the value of a behavior's property
 | ||
| 
											13 years ago
										 | 	 * @throws UnknownPropertyException if the property is not defined
 | ||
| 
											15 years ago
										 | 	 * @see __set
 | ||
|  | 	 */
 | ||
|  | 	public function __get($name)
 | ||
|  | 	{
 | ||
|  | 		$getter = 'get' . $name;
 | ||
| 
											14 years ago
										 | 		if (method_exists($this, $getter)) {
 | ||
|  | 			// read property, e.g. getName()
 | ||
| 
											15 years ago
										 | 			return $this->$getter();
 | ||
| 
											14 years ago
										 | 		} else {
 | ||
|  | 			// behavior property
 | ||
| 
											14 years ago
										 | 			$this->ensureBehaviors();
 | ||
| 
											13 years ago
										 | 			foreach ($this->_behaviors as $behavior) {
 | ||
| 
											13 years ago
										 | 				if ($behavior->canGetProperty($name)) {
 | ||
| 
											14 years ago
										 | 					return $behavior->$name;
 | ||
| 
											15 years ago
										 | 				}
 | ||
| 
											15 years ago
										 | 			}
 | ||
|  | 		}
 | ||
| 
											13 years ago
										 | 		throw new UnknownPropertyException('Getting unknown property: ' . get_class($this) . '::' . $name);
 | ||
| 
											15 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											14 years ago
										 | 	 * Sets the value of a component property.
 | ||
| 
											14 years ago
										 | 	 * This method will check in the following order and act accordingly:
 | ||
|  | 	 *
 | ||
|  | 	 *  - a property defined by a setter: set the property value
 | ||
| 
											14 years ago
										 | 	 *  - an event in the format of "on xyz": attach the handler to the event "xyz"
 | ||
|  | 	 *  - a behavior in the format of "as xyz": attach the behavior named as "xyz"
 | ||
| 
											14 years ago
										 | 	 *  - a property of a behavior: set the behavior property value
 | ||
|  | 	 *
 | ||
|  | 	 * Do not call this method directly as it is a PHP magic method that
 | ||
|  | 	 * will be implicitly called when executing `$component->property = $value;`.
 | ||
| 
											15 years ago
										 | 	 * @param string $name the property name or the event name
 | ||
| 
											14 years ago
										 | 	 * @param mixed $value the property value
 | ||
| 
											13 years ago
										 | 	 * @throws UnknownPropertyException if the property is not defined
 | ||
|  | 	 * @throws InvalidCallException if the property is read-only.
 | ||
| 
											15 years ago
										 | 	 * @see __get
 | ||
|  | 	 */
 | ||
| 
											15 years ago
										 | 	public function __set($name, $value)
 | ||
| 
											15 years ago
										 | 	{
 | ||
| 
											15 years ago
										 | 		$setter = 'set' . $name;
 | ||
| 
											14 years ago
										 | 		if (method_exists($this, $setter)) {
 | ||
|  | 			// set property
 | ||
| 
											14 years ago
										 | 			$this->$setter($value);
 | ||
|  | 			return;
 | ||
| 
											14 years ago
										 | 		} elseif (strncmp($name, 'on ', 3) === 0) {
 | ||
|  | 			// on event: attach event handler
 | ||
| 
											13 years ago
										 | 			$this->on(trim(substr($name, 3)), $value);
 | ||
| 
											14 years ago
										 | 			return;
 | ||
| 
											14 years ago
										 | 		} elseif (strncmp($name, 'as ', 3) === 0) {
 | ||
|  | 			// as behavior: attach behavior
 | ||
|  | 			$name = trim(substr($name, 3));
 | ||
| 
											13 years ago
										 | 			$this->attachBehavior($name, $value instanceof Behavior ? $value : Yii::createObject($value));
 | ||
| 
											13 years ago
										 | 			return;
 | ||
| 
											14 years ago
										 | 		} else {
 | ||
|  | 			// behavior property
 | ||
| 
											14 years ago
										 | 			$this->ensureBehaviors();
 | ||
| 
											13 years ago
										 | 			foreach ($this->_behaviors as $behavior) {
 | ||
| 
											13 years ago
										 | 				if ($behavior->canSetProperty($name)) {
 | ||
| 
											14 years ago
										 | 					$behavior->$name = $value;
 | ||
|  | 					return;
 | ||
| 
											15 years ago
										 | 				}
 | ||
| 
											15 years ago
										 | 			}
 | ||
|  | 		}
 | ||
| 
											15 years ago
										 | 		if (method_exists($this, 'get' . $name)) {
 | ||
| 
											13 years ago
										 | 			throw new InvalidCallException('Setting read-only property: ' . get_class($this) . '::' . $name);
 | ||
| 
											14 years ago
										 | 		} else {
 | ||
| 
											13 years ago
										 | 			throw new UnknownPropertyException('Setting unknown property: ' . get_class($this) . '::' . $name);
 | ||
| 
											15 years ago
										 | 		}
 | ||
| 
											15 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * Checks if a property value is null.
 | ||
| 
											14 years ago
										 | 	 * This method will check in the following order and act accordingly:
 | ||
|  | 	 *
 | ||
|  | 	 *  - a property defined by a setter: return whether the property value is null
 | ||
|  | 	 *  - a property of a behavior: return whether the property value is null
 | ||
|  | 	 *
 | ||
|  | 	 * Do not call this method directly as it is a PHP magic method that
 | ||
|  | 	 * will be implicitly called when executing `isset($component->property)`.
 | ||
| 
											15 years ago
										 | 	 * @param string $name the property name or the event name
 | ||
| 
											14 years ago
										 | 	 * @return boolean whether the named property is null
 | ||
| 
											15 years ago
										 | 	 */
 | ||
|  | 	public function __isset($name)
 | ||
|  | 	{
 | ||
| 
											15 years ago
										 | 		$getter = 'get' . $name;
 | ||
| 
											14 years ago
										 | 		if (method_exists($this, $getter)) {
 | ||
| 
											15 years ago
										 | 			return $this->$getter() !== null;
 | ||
| 
											14 years ago
										 | 		} else {
 | ||
|  | 			// behavior property
 | ||
| 
											14 years ago
										 | 			$this->ensureBehaviors();
 | ||
| 
											13 years ago
										 | 			foreach ($this->_behaviors as $behavior) {
 | ||
| 
											13 years ago
										 | 				if ($behavior->canGetProperty($name)) {
 | ||
| 
											14 years ago
										 | 					return $behavior->$name !== null;
 | ||
| 
											15 years ago
										 | 				}
 | ||
| 
											15 years ago
										 | 			}
 | ||
|  | 		}
 | ||
|  | 		return false;
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * Sets a component property to be null.
 | ||
| 
											14 years ago
										 | 	 * This method will check in the following order and act accordingly:
 | ||
|  | 	 *
 | ||
|  | 	 *  - a property defined by a setter: set the property value to be null
 | ||
|  | 	 *  - a property of a behavior: set the property value to be null
 | ||
|  | 	 *
 | ||
|  | 	 * Do not call this method directly as it is a PHP magic method that
 | ||
|  | 	 * will be implicitly called when executing `unset($component->property)`.
 | ||
|  | 	 * @param string $name the property name
 | ||
| 
											13 years ago
										 | 	 * @throws InvalidCallException if the property is read only.
 | ||
| 
											15 years ago
										 | 	 */
 | ||
|  | 	public function __unset($name)
 | ||
|  | 	{
 | ||
| 
											15 years ago
										 | 		$setter = 'set' . $name;
 | ||
| 
											14 years ago
										 | 		if (method_exists($this, $setter)) {
 | ||
| 
											14 years ago
										 | 			$this->$setter(null);
 | ||
|  | 			return;
 | ||
| 
											14 years ago
										 | 		} else {
 | ||
|  | 			// behavior property
 | ||
| 
											14 years ago
										 | 			$this->ensureBehaviors();
 | ||
| 
											13 years ago
										 | 			foreach ($this->_behaviors as $behavior) {
 | ||
| 
											13 years ago
										 | 				if ($behavior->canSetProperty($name)) {
 | ||
| 
											14 years ago
										 | 					$behavior->$name = null;
 | ||
|  | 					return;
 | ||
| 
											15 years ago
										 | 				}
 | ||
| 
											15 years ago
										 | 			}
 | ||
| 
											14 years ago
										 | 		}
 | ||
|  | 		if (method_exists($this, 'get' . $name)) {
 | ||
| 
											13 years ago
										 | 			throw new InvalidCallException('Unsetting read-only property: ' . get_class($this) . '.' . $name);
 | ||
| 
											14 years ago
										 | 		}
 | ||
| 
											15 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * Calls the named method which is not a class method.
 | ||
| 
											14 years ago
										 | 	 * If the name refers to a component property whose value is
 | ||
|  | 	 * an anonymous function, the method will execute the function.
 | ||
|  | 	 * Otherwise, it will check if any attached behavior has
 | ||
|  | 	 * the named method and will execute it if available.
 | ||
|  | 	 *
 | ||
|  | 	 * Do not call this method directly as it is a PHP magic method that
 | ||
|  | 	 * will be implicitly called when an unknown method is being invoked.
 | ||
| 
											15 years ago
										 | 	 * @param string $name the method name
 | ||
| 
											14 years ago
										 | 	 * @param array $params method parameters
 | ||
| 
											15 years ago
										 | 	 * @return mixed the method return value
 | ||
| 
											13 years ago
										 | 	 * @throws UnknownMethodException when calling unknown method
 | ||
| 
											15 years ago
										 | 	 */
 | ||
| 
											14 years ago
										 | 	public function __call($name, $params)
 | ||
| 
											15 years ago
										 | 	{
 | ||
| 
											13 years ago
										 | 		$getter = 'get' . $name;
 | ||
|  | 		if (method_exists($this, $getter)) {
 | ||
|  | 			$func = $this->$getter();
 | ||
| 
											15 years ago
										 | 			if ($func instanceof \Closure) {
 | ||
| 
											14 years ago
										 | 				return call_user_func_array($func, $params);
 | ||
| 
											15 years ago
										 | 			}
 | ||
|  | 		}
 | ||
|  | 
 | ||
| 
											14 years ago
										 | 		$this->ensureBehaviors();
 | ||
| 
											13 years ago
										 | 		foreach ($this->_behaviors as $object) {
 | ||
| 
											13 years ago
										 | 			if (method_exists($object, $name)) {
 | ||
| 
											14 years ago
										 | 				return call_user_func_array(array($object, $name), $params);
 | ||
| 
											14 years ago
										 | 			}
 | ||
| 
											15 years ago
										 | 		}
 | ||
| 
											14 years ago
										 | 
 | ||
| 
											13 years ago
										 | 		throw new UnknownMethodException('Calling unknown method: ' . get_class($this) . "::$name()");
 | ||
| 
											14 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											13 years ago
										 | 	 * This method is called after the object is created by cloning an existing one.
 | ||
|  | 	 * It removes all behaviors because they are attached to the old object.
 | ||
|  | 	 */
 | ||
|  | 	public function __clone()
 | ||
|  | 	{
 | ||
| 
											13 years ago
										 | 		$this->_events = null;
 | ||
|  | 		$this->_behaviors = null;
 | ||
| 
											13 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											13 years ago
										 | 	 * Returns a value indicating whether a property is defined for this component.
 | ||
|  | 	 * A property is defined if:
 | ||
|  | 	 *
 | ||
|  | 	 * - the class has a getter or setter method associated with the specified name
 | ||
|  | 	 *   (in this case, property name is case-insensitive);
 | ||
|  | 	 * - the class has a member variable with the specified name (when `$checkVar` is true);
 | ||
|  | 	 * - an attached behavior has a property of the given name (when `$checkBehavior` is true).
 | ||
|  | 	 *
 | ||
|  | 	 * @param string $name the property name
 | ||
|  | 	 * @param boolean $checkVar whether to treat member variables as properties
 | ||
|  | 	 * @param boolean $checkBehavior whether to treat behaviors' properties as properties of this component
 | ||
|  | 	 * @return boolean whether the property is defined
 | ||
|  | 	 * @see canGetProperty
 | ||
|  | 	 * @see canSetProperty
 | ||
|  | 	 */
 | ||
|  | 	public function hasProperty($name, $checkVar = true, $checkBehavior = true)
 | ||
|  | 	{
 | ||
|  | 		return $this->canGetProperty($name, $checkVar, $checkBehavior) || $this->canSetProperty($name, $checkVar, $checkBehavior);
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * Returns a value indicating whether a property can be read.
 | ||
|  | 	 * A property can be read if:
 | ||
|  | 	 *
 | ||
|  | 	 * - the class has a getter method associated with the specified name
 | ||
|  | 	 *   (in this case, property name is case-insensitive);
 | ||
|  | 	 * - the class has a member variable with the specified name (when `$checkVar` is true);
 | ||
|  | 	 * - an attached behavior has a readable property of the given name (when `$checkBehavior` is true).
 | ||
|  | 	 *
 | ||
|  | 	 * @param string $name the property name
 | ||
|  | 	 * @param boolean $checkVar whether to treat member variables as properties
 | ||
|  | 	 * @param boolean $checkBehavior whether to treat behaviors' properties as properties of this component
 | ||
|  | 	 * @return boolean whether the property can be read
 | ||
|  | 	 * @see canSetProperty
 | ||
|  | 	 */
 | ||
|  | 	public function canGetProperty($name, $checkVar = true, $checkBehavior = true)
 | ||
|  | 	{
 | ||
|  | 		if (method_exists($this, 'get' . $name) || $checkVar && property_exists($this, $name)) {
 | ||
|  | 			return true;
 | ||
|  | 		} else {
 | ||
|  | 			$this->ensureBehaviors();
 | ||
| 
											13 years ago
										 | 			foreach ($this->_behaviors as $behavior) {
 | ||
| 
											13 years ago
										 | 				if ($behavior->canGetProperty($name, $checkVar)) {
 | ||
|  | 					return true;
 | ||
|  | 				}
 | ||
|  | 			}
 | ||
|  | 			return false;
 | ||
|  | 		}
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * Returns a value indicating whether a property can be set.
 | ||
|  | 	 * A property can be written if:
 | ||
|  | 	 *
 | ||
|  | 	 * - the class has a setter method associated with the specified name
 | ||
|  | 	 *   (in this case, property name is case-insensitive);
 | ||
|  | 	 * - the class has a member variable with the specified name (when `$checkVar` is true);
 | ||
|  | 	 * - an attached behavior has a writable property of the given name (when `$checkBehavior` is true).
 | ||
|  | 	 *
 | ||
|  | 	 * @param string $name the property name
 | ||
|  | 	 * @param boolean $checkVar whether to treat member variables as properties
 | ||
|  | 	 * @param boolean $checkBehavior whether to treat behaviors' properties as properties of this component
 | ||
|  | 	 * @return boolean whether the property can be written
 | ||
|  | 	 * @see canGetProperty
 | ||
|  | 	 */
 | ||
|  | 	public function canSetProperty($name, $checkVar = true, $checkBehavior = true)
 | ||
|  | 	{
 | ||
|  | 		if (method_exists($this, 'set' . $name) || $checkVar && property_exists($this, $name)) {
 | ||
|  | 			return true;
 | ||
|  | 		} else {
 | ||
|  | 			$this->ensureBehaviors();
 | ||
| 
											13 years ago
										 | 			foreach ($this->_behaviors as $behavior) {
 | ||
| 
											13 years ago
										 | 				if ($behavior->canSetProperty($name, $checkVar)) {
 | ||
|  | 					return true;
 | ||
|  | 				}
 | ||
|  | 			}
 | ||
|  | 			return false;
 | ||
|  | 		}
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											14 years ago
										 | 	 * Returns a list of behaviors that this component should behave as.
 | ||
|  | 	 *
 | ||
|  | 	 * Child classes may override this method to specify the behaviors they want to behave as.
 | ||
|  | 	 *
 | ||
|  | 	 * The return value of this method should be an array of behavior objects or configurations
 | ||
|  | 	 * indexed by behavior names. A behavior configuration can be either a string specifying
 | ||
|  | 	 * the behavior class or an array of the following structure:
 | ||
|  | 	 *
 | ||
|  | 	 * ~~~
 | ||
|  | 	 * 'behaviorName' => array(
 | ||
| 
											14 years ago
										 | 	 *     'class' => 'BehaviorClass',
 | ||
|  | 	 *     'property1' => 'value1',
 | ||
|  | 	 *     'property2' => 'value2',
 | ||
| 
											14 years ago
										 | 	 * )
 | ||
|  | 	 * ~~~
 | ||
|  | 	 *
 | ||
| 
											14 years ago
										 | 	 * Note that a behavior class must extend from [[Behavior]]. Behavior names can be strings
 | ||
|  | 	 * or integers. If the former, they uniquely identify the behaviors. If the latter, the corresponding
 | ||
|  | 	 * behaviors are anonymous and their properties and methods will NOT be made available via the component
 | ||
|  | 	 * (however, the behaviors can still respond to the component's events).
 | ||
| 
											14 years ago
										 | 	 *
 | ||
| 
											14 years ago
										 | 	 * Behaviors declared in this method will be attached to the component automatically (on demand).
 | ||
| 
											14 years ago
										 | 	 *
 | ||
|  | 	 * @return array the behavior configurations.
 | ||
|  | 	 */
 | ||
|  | 	public function behaviors()
 | ||
|  | 	{
 | ||
|  | 		return array();
 | ||
| 
											15 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											14 years ago
										 | 	 * Returns a value indicating whether there is any handler attached to the named event.
 | ||
| 
											15 years ago
										 | 	 * @param string $name the event name
 | ||
| 
											14 years ago
										 | 	 * @return boolean whether there is any handler attached to the event.
 | ||
| 
											15 years ago
										 | 	 */
 | ||
| 
											14 years ago
										 | 	public function hasEventHandlers($name)
 | ||
| 
											15 years ago
										 | 	{
 | ||
| 
											14 years ago
										 | 		$this->ensureBehaviors();
 | ||
| 
											13 years ago
										 | 		return !empty($this->_events[$name]);
 | ||
| 
											15 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * Attaches an event handler to an event.
 | ||
|  | 	 *
 | ||
| 
											14 years ago
										 | 	 * An event handler must be a valid PHP callback. The followings are
 | ||
|  | 	 * some examples:
 | ||
|  | 	 *
 | ||
| 
											14 years ago
										 | 	 * ~~~
 | ||
| 
											13 years ago
										 | 	 * function ($event) { ... }         // anonymous function
 | ||
| 
											14 years ago
										 | 	 * array($object, 'handleClick')    // $object->handleClick()
 | ||
|  | 	 * array('Page', 'handleClick')     // Page::handleClick()
 | ||
|  | 	 * 'handleClick'                    // global function handleClick()
 | ||
| 
											14 years ago
										 | 	 * ~~~
 | ||
| 
											15 years ago
										 | 	 *
 | ||
|  | 	 * An event handler must be defined with the following signature,
 | ||
|  | 	 *
 | ||
| 
											14 years ago
										 | 	 * ~~~
 | ||
| 
											13 years ago
										 | 	 * function ($event)
 | ||
| 
											14 years ago
										 | 	 * ~~~
 | ||
| 
											15 years ago
										 | 	 *
 | ||
| 
											14 years ago
										 | 	 * where `$event` is an [[Event]] object which includes parameters associated with the event.
 | ||
| 
											15 years ago
										 | 	 *
 | ||
|  | 	 * @param string $name the event name
 | ||
| 
											13 years ago
										 | 	 * @param callback $handler the event handler
 | ||
|  | 	 * @param mixed $data the data to be passed to the event handler when the event is triggered.
 | ||
|  | 	 * When the event handler is invoked, this data can be accessed via [[Event::data]].
 | ||
| 
											13 years ago
										 | 	 * @see off()
 | ||
| 
											15 years ago
										 | 	 */
 | ||
| 
											13 years ago
										 | 	public function on($name, $handler, $data = null)
 | ||
| 
											15 years ago
										 | 	{
 | ||
| 
											13 years ago
										 | 		$this->ensureBehaviors();
 | ||
|  | 		$this->_events[$name][] = array($handler, $data);
 | ||
| 
											15 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											13 years ago
										 | 	 * Detaches an existing event handler from this component.
 | ||
|  | 	 * This method is the opposite of [[on()]].
 | ||
| 
											15 years ago
										 | 	 * @param string $name event name
 | ||
| 
											13 years ago
										 | 	 * @param callback $handler the event handler to be removed.
 | ||
|  | 	 * If it is null, all handlers attached to the named event will be removed.
 | ||
| 
											14 years ago
										 | 	 * @return boolean if a handler is found and detached
 | ||
| 
											13 years ago
										 | 	 * @see on()
 | ||
| 
											15 years ago
										 | 	 */
 | ||
| 
											13 years ago
										 | 	public function off($name, $handler = null)
 | ||
| 
											15 years ago
										 | 	{
 | ||
| 
											13 years ago
										 | 		$this->ensureBehaviors();
 | ||
|  | 		if (isset($this->_events[$name])) {
 | ||
|  | 			if ($handler === null) {
 | ||
|  | 				$this->_events[$name] = array();
 | ||
|  | 			} else {
 | ||
|  | 				$removed = false;
 | ||
|  | 				foreach ($this->_events[$name] as $i => $event) {
 | ||
|  | 					if ($event[0] === $handler) {
 | ||
|  | 						unset($this->_events[$name][$i]);
 | ||
|  | 						$removed = true;
 | ||
|  | 					}
 | ||
|  | 				}
 | ||
|  | 				if ($removed) {
 | ||
|  | 					$this->_events[$name] = array_values($this->_events[$name]);
 | ||
|  | 				}
 | ||
|  | 				return $removed;
 | ||
|  | 			}
 | ||
|  | 		}
 | ||
|  | 		return false;
 | ||
| 
											15 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											14 years ago
										 | 	 * Triggers an event.
 | ||
| 
											15 years ago
										 | 	 * This method represents the happening of an event. It invokes
 | ||
|  | 	 * all attached handlers for the event.
 | ||
|  | 	 * @param string $name the event name
 | ||
| 
											14 years ago
										 | 	 * @param Event $event the event parameter. If not set, a default [[Event]] object will be created.
 | ||
| 
											15 years ago
										 | 	 */
 | ||
| 
											14 years ago
										 | 	public function trigger($name, $event = null)
 | ||
| 
											15 years ago
										 | 	{
 | ||
| 
											14 years ago
										 | 		$this->ensureBehaviors();
 | ||
| 
											13 years ago
										 | 		if (!empty($this->_events[$name])) {
 | ||
| 
											14 years ago
										 | 			if ($event === null) {
 | ||
| 
											13 years ago
										 | 				$event = new Event;
 | ||
|  | 			}
 | ||
|  | 			if ($event->sender === null) {
 | ||
|  | 				$event->sender = $this;
 | ||
| 
											14 years ago
										 | 			}
 | ||
| 
											13 years ago
										 | 			$event->handled = false;
 | ||
|  | 			$event->name = $name;
 | ||
| 
											13 years ago
										 | 			foreach ($this->_events[$name] as $handler) {
 | ||
|  | 				$event->data = $handler[1];
 | ||
|  | 				call_user_func($handler[0], $event);
 | ||
| 
											14 years ago
										 | 				// stop further handling if the event is handled
 | ||
|  | 				if ($event instanceof Event && $event->handled) {
 | ||
| 
											15 years ago
										 | 					return;
 | ||
| 
											14 years ago
										 | 				}
 | ||
|  | 			}
 | ||
|  | 		}
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * Returns the named behavior object.
 | ||
| 
											14 years ago
										 | 	 * @param string $name the behavior name
 | ||
| 
											14 years ago
										 | 	 * @return Behavior the behavior object, or null if the behavior does not exist
 | ||
|  | 	 */
 | ||
| 
											14 years ago
										 | 	public function getBehavior($name)
 | ||
| 
											14 years ago
										 | 	{
 | ||
| 
											14 years ago
										 | 		$this->ensureBehaviors();
 | ||
| 
											13 years ago
										 | 		return isset($this->_behaviors[$name]) ? $this->_behaviors[$name] : null;
 | ||
| 
											14 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * Returns all behaviors attached to this component.
 | ||
|  | 	 * @return Behavior[] list of behaviors attached to this component
 | ||
|  | 	 */
 | ||
|  | 	public function getBehaviors()
 | ||
|  | 	{
 | ||
|  | 		$this->ensureBehaviors();
 | ||
| 
											13 years ago
										 | 		return $this->_behaviors;
 | ||
| 
											14 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * Attaches a behavior to this component.
 | ||
|  | 	 * This method will create the behavior object based on the given
 | ||
|  | 	 * configuration. After that, the behavior object will be attached to
 | ||
| 
											13 years ago
										 | 	 * this component by calling the [[Behavior::attach()]] method.
 | ||
| 
											13 years ago
										 | 	 * @param string $name the name of the behavior.
 | ||
| 
											14 years ago
										 | 	 * @param string|array|Behavior $behavior the behavior configuration. This can be one of the following:
 | ||
| 
											14 years ago
										 | 	 *
 | ||
|  | 	 *  - a [[Behavior]] object
 | ||
|  | 	 *  - a string specifying the behavior class
 | ||
| 
											13 years ago
										 | 	 *  - an object configuration array that will be passed to [[Yii::createObject()]] to create the behavior object.
 | ||
| 
											14 years ago
										 | 	 *
 | ||
|  | 	 * @return Behavior the behavior object
 | ||
|  | 	 * @see detachBehavior
 | ||
|  | 	 */
 | ||
|  | 	public function attachBehavior($name, $behavior)
 | ||
|  | 	{
 | ||
| 
											14 years ago
										 | 		$this->ensureBehaviors();
 | ||
|  | 		return $this->attachBehaviorInternal($name, $behavior);
 | ||
| 
											14 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * Attaches a list of behaviors to the component.
 | ||
|  | 	 * Each behavior is indexed by its name and should be a [[Behavior]] object,
 | ||
| 
											14 years ago
										 | 	 * a string specifying the behavior class, or an configuration array for creating the behavior.
 | ||
| 
											14 years ago
										 | 	 * @param array $behaviors list of behaviors to be attached to the component
 | ||
|  | 	 * @see attachBehavior
 | ||
|  | 	 */
 | ||
|  | 	public function attachBehaviors($behaviors)
 | ||
|  | 	{
 | ||
| 
											14 years ago
										 | 		$this->ensureBehaviors();
 | ||
| 
											14 years ago
										 | 		foreach ($behaviors as $name => $behavior) {
 | ||
| 
											14 years ago
										 | 			$this->attachBehaviorInternal($name, $behavior);
 | ||
| 
											14 years ago
										 | 		}
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * Detaches a behavior from the component.
 | ||
| 
											13 years ago
										 | 	 * The behavior's [[Behavior::detach()]] method will be invoked.
 | ||
| 
											14 years ago
										 | 	 * @param string $name the behavior's name.
 | ||
|  | 	 * @return Behavior the detached behavior. Null if the behavior does not exist.
 | ||
|  | 	 */
 | ||
|  | 	public function detachBehavior($name)
 | ||
|  | 	{
 | ||
| 
											13 years ago
										 | 		$this->ensureBehaviors();
 | ||
| 
											13 years ago
										 | 		if (isset($this->_behaviors[$name])) {
 | ||
|  | 			$behavior = $this->_behaviors[$name];
 | ||
|  | 			unset($this->_behaviors[$name]);
 | ||
| 
											13 years ago
										 | 			$behavior->detach();
 | ||
| 
											14 years ago
										 | 			return $behavior;
 | ||
| 
											14 years ago
										 | 		} else {
 | ||
|  | 			return null;
 | ||
| 
											14 years ago
										 | 		}
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * Detaches all behaviors from the component.
 | ||
|  | 	 */
 | ||
|  | 	public function detachBehaviors()
 | ||
|  | 	{
 | ||
| 
											13 years ago
										 | 		$this->ensureBehaviors();
 | ||
| 
											13 years ago
										 | 		if ($this->_behaviors !== null) {
 | ||
|  | 			foreach ($this->_behaviors as $name => $behavior) {
 | ||
| 
											14 years ago
										 | 				$this->detachBehavior($name);
 | ||
|  | 			}
 | ||
| 
											14 years ago
										 | 		}
 | ||
| 
											13 years ago
										 | 		$this->_behaviors = array();
 | ||
| 
											14 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * Makes sure that the behaviors declared in [[behaviors()]] are attached to this component.
 | ||
|  | 	 */
 | ||
|  | 	public function ensureBehaviors()
 | ||
|  | 	{
 | ||
| 
											13 years ago
										 | 		if ($this->_behaviors === null) {
 | ||
|  | 			$this->_behaviors = array();
 | ||
| 
											14 years ago
										 | 			foreach ($this->behaviors() as $name => $behavior) {
 | ||
| 
											14 years ago
										 | 				$this->attachBehaviorInternal($name, $behavior);
 | ||
| 
											14 years ago
										 | 			}
 | ||
| 
											14 years ago
										 | 		}
 | ||
|  | 	}
 | ||
| 
											14 years ago
										 | 
 | ||
|  | 	/**
 | ||
|  | 	 * Attaches a behavior to this component.
 | ||
| 
											13 years ago
										 | 	 * @param string $name the name of the behavior.
 | ||
| 
											14 years ago
										 | 	 * @param string|array|Behavior $behavior the behavior to be attached
 | ||
|  | 	 * @return Behavior the attached behavior.
 | ||
|  | 	 */
 | ||
|  | 	private function attachBehaviorInternal($name, $behavior)
 | ||
|  | 	{
 | ||
|  | 		if (!($behavior instanceof Behavior)) {
 | ||
| 
											13 years ago
										 | 			$behavior = Yii::createObject($behavior);
 | ||
| 
											14 years ago
										 | 		}
 | ||
| 
											13 years ago
										 | 		if (isset($this->_behaviors[$name])) {
 | ||
|  | 			$this->_behaviors[$name]->detach();
 | ||
| 
											14 years ago
										 | 		}
 | ||
| 
											13 years ago
										 | 		$behavior->attach($this);
 | ||
| 
											13 years ago
										 | 		return $this->_behaviors[$name] = $behavior;
 | ||
| 
											14 years ago
										 | 	}
 | ||
| 
											15 years ago
										 | }
 |