From e4999b25052d1ad9400a0f9fd5289a49eea1bddc Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Sun, 25 Jan 2015 20:04:57 +0100 Subject: More namespace changes Changed version to 3.2.99; Attempt at fixing autoloading fixed enough namespaces to have some demos running --- framework/TClassBehaviorEventParameter.php | 82 ------------------------------ 1 file changed, 82 deletions(-) delete mode 100644 framework/TClassBehaviorEventParameter.php (limited to 'framework/TClassBehaviorEventParameter.php') diff --git a/framework/TClassBehaviorEventParameter.php b/framework/TClassBehaviorEventParameter.php deleted file mode 100644 index 9c555ccf..00000000 --- a/framework/TClassBehaviorEventParameter.php +++ /dev/null @@ -1,82 +0,0 @@ - - * - * Global Events, intra-object events, Class behaviors, expanded behaviors - * @author Brad Anderson - * - * @link http://www.pradosoft.com/ - * @copyright Copyright © 2005-2014 PradoSoft - * @license http://www.pradosoft.com/license/ - * @package Prado - */ - -namespace Prado; - -/** - * TClassBehaviorEventParameter class. - * TClassBehaviorEventParameter is the parameter sent with the class behavior changes. - * - * @author Brad Anderson - * @package Prado - * @since 3.2.3 - */ -class TClassBehaviorEventParameter extends \Prado\TEventParameter -{ - private $_class; - private $_name; - private $_behavior; - private $_priority; - - /** - * Holds the parameters for the Class Behavior Events - * @param string $class this is the class to get the behavior - * @param string $name the name of the behavior - * @param object $behavior this is the behavior to implement the class behavior - */ - public function __construct($class,$name,$behavior,$priority) - { - $this->_class=$class; - $this->_name=$name; - $this->_behavior=$behavior; - $this->_priority=$priority; - } - - /** - * This is the class to get the behavior - * @return string the class to get the behavior - */ - public function getClass() - { - return $this->_class; - } - - /** - * name of the behavior - * @return string the name to get the behavior - */ - public function getName() - { - return $this->_name; - } - - /** - * This is the behavior which the class is to get - * @return object the behavior to implement - */ - public function getBehavior() - { - return $this->_behavior; - } - - /** - * This is the priority which the behavior is to get - * @return numeric the priority of the behavior - */ - public function getPriority() - { - return $this->_priority; - } -} \ No newline at end of file -- cgit v1.2.3