Exemplo n.º 1
0
 public function executeCreate(sfWebRequest $request)
 {
     $this->forward404Unless($request->isMethod('post'));
     $project = Doctrine::getTable('Project')->find($request->getParameter('project_id'));
     $iteration = new Iteration();
     $iteration->setProject($project);
     $this->form = new IterationForm($iteration);
     $this->processForm($request, $this->form);
     $this->setTemplate('new');
 }