diff options
author | ctrlaltca@gmail.com <> | 2011-06-20 14:26:39 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2011-06-20 14:26:39 +0000 |
commit | d4b19712c271c3bf9d16909768c4bd84d617afd5 (patch) | |
tree | 103fb4f57818c7eaf2a9591d237299ea146196fd /framework/Base/TModelEvent.php | |
parent | a57ead00a69cd5240dd7549fa3a7da8d4e717749 (diff) |
killed the experimental activecontrols implementation backported from yii
Diffstat (limited to 'framework/Base/TModelEvent.php')
-rw-r--r-- | framework/Base/TModelEvent.php | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/framework/Base/TModelEvent.php b/framework/Base/TModelEvent.php deleted file mode 100644 index c785b997..00000000 --- a/framework/Base/TModelEvent.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php -/** - * TModelEvent class file. - * - * @author Qiang Xue <qiang.xue@gmail.com> - * @link http://www.yiiframework.com/ - * @copyright Copyright © 2008-2009 Yii Software LLC - * @license http://www.yiiframework.com/license/ - */ - -Prado::using('System.Base.TEvent'); - -/** - * TModelEvent class. - * - * TModelEvent represents the event parameters needed by events raised by a model. - * - * @author Qiang Xue <qiang.xue@gmail.com> - * @version $Id: TModelEvent.php 1093 2009-06-05 13:09:17Z qiang.xue $ - * @package system.base - * @since 1.0 - */ -class TModelEvent extends TEvent -{ - /** - * @var boolean whether the model is valid. Defaults to true. - * If this is set false, {@link TModel::validate()} will return false and quit the current validation process. - */ - public $isValid=true; -} |