mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
71 lines
1.8 KiB
PHP
71 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace Kanboard\Controller;
|
|
|
|
/**
|
|
* Subtask Status
|
|
*
|
|
* @package Kanboard\Controller
|
|
* @author Frederic Guillot
|
|
*/
|
|
class SubtaskStatusController 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->subtaskModel->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->subtaskTimeTrackingModel->logStartTime($subtask_id, $this->userSession->getId());
|
|
} elseif ($timer === 'stop') {
|
|
$this->subtaskTimeTrackingModel->logEndTime($subtask_id, $this->userSession->getId());
|
|
$this->subtaskTimeTrackingModel->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->subtaskModel->getAll($task['id']),
|
|
'editable' => true,
|
|
));
|
|
}
|
|
}
|