summaryrefslogtreecommitdiff
path: root/framework/Data/ActiveRecord/TActiveRecord.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Data/ActiveRecord/TActiveRecord.php')
-rw-r--r--framework/Data/ActiveRecord/TActiveRecord.php58
1 files changed, 1 insertions, 57 deletions
diff --git a/framework/Data/ActiveRecord/TActiveRecord.php b/framework/Data/ActiveRecord/TActiveRecord.php
index 735579cd..5e4755d6 100644
--- a/framework/Data/ActiveRecord/TActiveRecord.php
+++ b/framework/Data/ActiveRecord/TActiveRecord.php
@@ -1046,60 +1046,4 @@ abstract class TActiveRecord extends TComponent
public function toJSON(){
return json_encode($this->toArray());
}
-}
-
-/**
- * TActiveRecordChangeEventParameter class
- *
- * TActiveRecordChangeEventParameter encapsulates the parameter data for
- * ActiveRecord change commit events that are broadcasted. The following change events
- * may be raise: {@link TActiveRecord::OnInsert}, {@link TActiveRecord::OnUpdate} and
- * {@link TActiveRecord::OnDelete}. The {@link setIsValid IsValid} parameter can
- * be set to false to prevent the requested change event to be performed.
- *
- * @author Wei Zhuo<weizhuo@gmail.com>
- * @package System.Data.ActiveRecord
- * @since 3.1.2
- */
-class TActiveRecordChangeEventParameter extends TEventParameter
-{
- private $_isValid=true;
-
- /**
- * @return boolean whether the event should be performed.
- */
- public function getIsValid()
- {
- return $this->_isValid;
- }
-
- /**
- * @param boolean set to false to prevent the event.
- */
- public function setIsValid($value)
- {
- $this->_isValid = TPropertyValue::ensureBoolean($value);
- }
-}
-
-/**
- * TActiveRecordInvalidFinderResult class.
- * TActiveRecordInvalidFinderResult defines the enumerable type for possible results
- * if an invalid {@link TActiveRecord::__call magic-finder} invoked.
- *
- * The following enumerable values are defined:
- * - Null: return null (default)
- * - Exception: throws a TActiveRecordException
- *
- * @author Yves Berkholz <godzilla80@gmx.net>
- * @package System.Data.ActiveRecord
- * @see TActiveRecordManager::setInvalidFinderResult
- * @see TActiveRecordConfig::setInvalidFinderResult
- * @see TActiveRecord::setInvalidFinderResult
- * @since 3.1.5
- */
-class TActiveRecordInvalidFinderResult extends TEnumerable
-{
- const Null = 'Null';
- const Exception = 'Exception';
-}
+} \ No newline at end of file