From 46ed06268dc3d591fb7bb90a5a9a75e77c17b86c Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Tue, 17 May 2016 22:25:18 -0400 Subject: Rename subtask controller --- app/Controller/SubtaskRestriction.php | 61 ----------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 app/Controller/SubtaskRestriction.php (limited to 'app/Controller/SubtaskRestriction.php') diff --git a/app/Controller/SubtaskRestriction.php b/app/Controller/SubtaskRestriction.php deleted file mode 100644 index bfa3031c..00000000 --- a/app/Controller/SubtaskRestriction.php +++ /dev/null @@ -1,61 +0,0 @@ -getTask(); - $subtask = $this->getSubtask(); - - $this->response->html($this->template->render('subtask_restriction/popover', array( - 'status_list' => array( - SubtaskModel::STATUS_TODO => t('Todo'), - SubtaskModel::STATUS_DONE => t('Done'), - ), - 'subtask_inprogress' => $this->subtask->getSubtaskInProgress($this->userSession->getId()), - 'subtask' => $subtask, - 'task' => $task, - ))); - } - - /** - * Change status of the in progress subtask and the other subtask - * - * @access public - */ - public function update() - { - $task = $this->getTask(); - $subtask = $this->getSubtask(); - $values = $this->request->getValues(); - - // Change status of the previous "in progress" subtask - $this->subtask->update(array( - 'id' => $values['id'], - 'status' => $values['status'], - )); - - // Set the current subtask to "in progress" - $this->subtask->update(array( - 'id' => $subtask['id'], - 'status' => SubtaskModel::STATUS_INPROGRESS, - )); - - $this->response->redirect($this->helper->url->to('task', 'show', array('project_id' => $task['project_id'], 'task_id' => $task['id'])), true); - } -} -- cgit v1.2.3