Ejemplo n.º 1
0
 /** Store the form's values to this recipe.
  * @param RECIPE &$obj
  * @access private */
 function _store_to_object(&$obj)
 {
     $obj->originator = $this->value_as_text('originator');
     $obj->ingredients = $this->value_as_text('ingredients');
     $obj->instructions = $this->value_as_text('instructions');
     $obj->bullet_ingredients = $this->value_for('bullet_ingredients');
     $obj->number_instructions = $this->value_for('number_instructions');
     parent::_store_to_object($obj);
 }