summaryrefslogtreecommitdiff
path: root/app/Controller/SubtaskStatus.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-17 22:25:18 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-17 22:25:18 -0400
commit46ed06268dc3d591fb7bb90a5a9a75e77c17b86c (patch)
tree4e4cc7d42bed1d5ca5e1c9d65415def3161cad2c /app/Controller/SubtaskStatus.php
parent996997a12d1b435956a96640eb6cf39045f6ef46 (diff)
Rename subtask controller
Diffstat (limited to 'app/Controller/SubtaskStatus.php')
-rw-r--r--app/Controller/SubtaskStatus.php72
1 files changed, 0 insertions, 72 deletions
diff --git a/app/Controller/SubtaskStatus.php b/app/Controller/SubtaskStatus.php
deleted file mode 100644
index e22e825e..00000000
--- a/app/Controller/SubtaskStatus.php
+++ /dev/null
@@ -1,72 +0,0 @@
-<?php
-
-namespace Kanboard\Controller;
-
-/**
- * Subtask Status
- *
- * @package controller
- * @author Frederic Guillot
- */
-class SubtaskStatus extends BaseController
-{
- /**
- * Change status to the next status: Toto -> In Progress -> Done
- *
- * @access public
- */
- public function change()
- {
- $task = $this->getTask();
- $subtask = $this->getSubtask();
-
- $status = $this->subtask->toggleStatus($subtask['id']);
-
- if ($this->request->getIntegerParam('refresh-table') === 0) {
- $subtask['status'] = $status;
- $html = $this->helper->subtask->toggleStatus($subtask, $task['project_id']);
- } else {
- $html = $this->renderTable($task);
- }
-
- $this->response->html($html);
- }
-
- /**
- * Start/stop timer for subtasks
- *
- * @access public
- */
- public function timer()
- {
- $task = $this->getTask();
- $subtask_id = $this->request->getIntegerParam('subtask_id');
- $timer = $this->request->getStringParam('timer');
-
- if ($timer === 'start') {
- $this->subtaskTimeTracking->logStartTime($subtask_id, $this->userSession->getId());
- } elseif ($timer === 'stop') {
- $this->subtaskTimeTracking->logEndTime($subtask_id, $this->userSession->getId());
- $this->subtaskTimeTracking->updateTaskTimeTracking($task['id']);
- }
-
- $this->response->html($this->renderTable($task));
- }
-
- /**
- * Render table
- *
- * @access private
- * @param array $task
- * @return string
- */
- private function renderTable(array $task)
- {
- return $this->template->render('subtask/table', array(
- 'task' => $task,
- 'subtasks' => $this->subtask->getAll($task['id']),
- 'editable' => true,
- 'redirect' => 'task',
- ));
- }
-}