Esempio n. 1
0
 /**
  * Delete the specified task
  *
  */
 public function deleteAction()
 {
     $task = $this->byId();
     // delete it
     if (!$this->projectService->deleteTask($task)) {
         $this->flash("Failed deleting " . $task->title);
     }
     $this->redirect('project', 'view', array('id' => $task->projectid, '#tasks'));
 }