Doctrine 1.2.4
Doctrine_Record_Filter_Standard Class Reference

Inherits Doctrine_Record_Filter.

Public Member Functions

 filterGet (Doctrine_Record $record, $name)
 
 filterSet (Doctrine_Record $record, $name, $value)
 

Detailed Description

Definition at line 34 of file Standard.php.

Member Function Documentation

Doctrine_Record_Filter_Standard::filterGet ( Doctrine_Record  $record,
  $name 
)

filterGet defines an implementation for filtering the get() method of Doctrine_Record

Parameters
mixed$namename of the property or related component

Definition at line 53 of file Standard.php.

{
throw new Doctrine_Record_UnknownPropertyException(sprintf('Unknown record property / related component "%s" on "%s"', $name, get_class($record)));
}
Doctrine_Record_Filter_Standard::filterSet ( Doctrine_Record  $record,
  $name,
  $value 
)

filterSet defines an implementation for filtering the set() method of Doctrine_Record

Parameters
mixed$namename of the property or related component

Definition at line 42 of file Standard.php.

{
throw new Doctrine_Record_UnknownPropertyException(sprintf('Unknown record property / related component "%s" on "%s"', $name, get_class($record)));
}

The documentation for this class was generated from the following file: