From df0081f13bded8a004d3067ef91a805a7f17bd24 Mon Sep 17 00:00:00 2001 From: zYne Date: Thu, 20 Sep 2007 20:10:32 +0000 Subject: [PATCH] --- lib/Doctrine/Record/Filter/Standard.php | 56 +++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 lib/Doctrine/Record/Filter/Standard.php diff --git a/lib/Doctrine/Record/Filter/Standard.php b/lib/Doctrine/Record/Filter/Standard.php new file mode 100644 index 000000000..c18e9f8b7 --- /dev/null +++ b/lib/Doctrine/Record/Filter/Standard.php @@ -0,0 +1,56 @@ +. + */ + +/** + * Doctrine_Record_Filter_Standard + * Filters the record getters and setters + * + * @author Konsta Vesterinen + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @package Doctrine + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision: 1298 $ + */ +class Doctrine_Record_Filter_Standard extends Doctrine_Record_Filter +{ + /** + * filterSet + * defines an implementation for filtering the set() method of Doctrine_Record + * + * @param mixed $name name of the property or related component + */ + abstract public function filterSet($key, $value) + { + throw new Doctrine_Record_Exception('Unknown record property / related component \'' . $key . '\'.'); + } + /** + * filterGet + * defines an implementation for filtering the get() method of Doctrine_Record + * + * @param mixed $name name of the property or related component + */ + abstract public function filterGet($key) + { + throw new Doctrine_Record_Exception('Unknown record property / related component \'' . $key . '\'.'); + } +}