Snippets

Create an account or login to be able to add, comment and rate snippets.

Navigation

Saving records w/ Doctrine from a form using object helpers

// This is meant to be in actions.class.php as one of your actions. // Note how it redirects to your view action after saving.

public function executeSave() { $req = $this->getRequest();

$q = new Doctrine_Query();
$user = $q->from('UserInfo')->where('id = ?',$this->getRequestParameter('id'))->execute()->getFirst();
 
$user->merge($req->getParameterHolder()->getAll());
$user->save();
 
$this->redirect('user/view?did=save&id='.$user->id);

}

by whoknows on 2007-06-12, tagged doctrine  objecthelper  save 
You need to create an account or log in to post a comment or rate this snippet.