예제 #1
0
 /**
  * Add the custom internal values to an INSERT or UPDATE
  * request passed through the ORM with {@link DataObject->write()}.
  * Fields are added in $manipulation['fields']. Please ensure
  * these fields are escaped for database insertion, as no
  * further processing happens before running the query.
  * Use {@link DBField->prepValueForDB()}.
  * Ensure to write NULL or empty values as well to allow 
  * unsetting a previously set field. Use {@link DBField->nullValue()}
  * for the appropriate type.
  * 
  * @param array &$manipulation Manipulation to write to
  * 
  * @return void
  * 
  * @author Sebastian Diel <*****@*****.**>
  * @since 13.02.2013
  */
 public function writeToManipulation(&$manipulation)
 {
     return parent::writeToManipulation($manipulation);
 }