Exemple #1
0
 public function executeCreate(sfWebRequest $request)
 {
     $this->forward404Unless($request->isMethod('post'));
     $iteration = Doctrine::getTable('Iteration')->find($request->getParameter('iteration_id'));
     $story = new Story();
     $story->setIteration($iteration);
     $this->form = new StoryForm($story);
     $this->processForm($request, $this->form);
     $this->setTemplate('new');
 }