mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
120 lines
3.9 KiB
PHP
120 lines
3.9 KiB
PHP
<?php
|
|
|
|
namespace Kanboard\Controller;
|
|
|
|
/**
|
|
* Task Modification controller
|
|
*
|
|
* @package controller
|
|
* @author Frederic Guillot
|
|
*/
|
|
class Taskmodification extends Base
|
|
{
|
|
/**
|
|
* Set automatically the start date
|
|
*
|
|
* @access public
|
|
*/
|
|
public function start()
|
|
{
|
|
$task = $this->getTask();
|
|
$this->taskModification->update(array('id' => $task['id'], 'date_started' => time()));
|
|
$this->response->redirect($this->helper->url->to('task', 'show', array('project_id' => $task['project_id'], 'task_id' => $task['id'])));
|
|
}
|
|
|
|
/**
|
|
* Edit description form
|
|
*
|
|
* @access public
|
|
*/
|
|
public function description(array $values = array(), array $errors = array())
|
|
{
|
|
$task = $this->getTask();
|
|
|
|
if (empty($values)) {
|
|
$values = array('id' => $task['id'], 'description' => $task['description']);
|
|
}
|
|
|
|
$this->response->html($this->helper->layout->task('task_modification/edit_description', array(
|
|
'values' => $values,
|
|
'errors' => $errors,
|
|
'task' => $task,
|
|
)));
|
|
}
|
|
|
|
/**
|
|
* Update description
|
|
*
|
|
* @access public
|
|
*/
|
|
public function updateDescription()
|
|
{
|
|
$task = $this->getTask();
|
|
$values = $this->request->getValues();
|
|
|
|
list($valid, $errors) = $this->taskValidator->validateDescriptionCreation($values);
|
|
|
|
if ($valid) {
|
|
if ($this->taskModification->update($values)) {
|
|
$this->flash->success(t('Task updated successfully.'));
|
|
} else {
|
|
$this->flash->failure(t('Unable to update your task.'));
|
|
}
|
|
|
|
return $this->response->redirect($this->helper->url->to('task', 'show', array('project_id' => $task['project_id'], 'task_id' => $task['id'])), true);
|
|
}
|
|
|
|
$this->description($values, $errors);
|
|
}
|
|
|
|
/**
|
|
* Display a form to edit a task
|
|
*
|
|
* @access public
|
|
*/
|
|
public function edit(array $values = array(), array $errors = array())
|
|
{
|
|
$task = $this->getTask();
|
|
$project = $this->project->getById($task['project_id']);
|
|
|
|
if (empty($values)) {
|
|
$values = $task;
|
|
$values = $this->hook->merge('controller:task:form:default', $values, array('default_values' => $values));
|
|
$values = $this->hook->merge('controller:task-modification:form:default', $values, array('default_values' => $values));
|
|
}
|
|
|
|
$values = $this->dateParser->format($values, array('date_due'), $this->config->get('application_date_format', 'm/d/Y'));
|
|
$values = $this->dateParser->format($values, array('date_started'), $this->config->get('application_datetime_format', 'm/d/Y H:i'));
|
|
|
|
$this->response->html($this->helper->layout->task('task_modification/edit_task', array(
|
|
'project' => $project,
|
|
'values' => $values,
|
|
'errors' => $errors,
|
|
'task' => $task,
|
|
'users_list' => $this->projectUserRole->getAssignableUsersList($task['project_id']),
|
|
'colors_list' => $this->color->getList(),
|
|
'categories_list' => $this->category->getList($task['project_id']),
|
|
)));
|
|
}
|
|
|
|
/**
|
|
* Validate and update a task
|
|
*
|
|
* @access public
|
|
*/
|
|
public function update()
|
|
{
|
|
$task = $this->getTask();
|
|
$values = $this->request->getValues();
|
|
|
|
list($valid, $errors) = $this->taskValidator->validateModification($values);
|
|
|
|
if ($valid && $this->taskModification->update($values)) {
|
|
$this->flash->success(t('Task updated successfully.'));
|
|
return $this->response->redirect($this->helper->url->to('task', 'show', array('project_id' => $task['project_id'], 'task_id' => $task['id'])), true);
|
|
} else {
|
|
$this->flash->failure(t('Unable to update your task.'));
|
|
$this->edit($values, $errors);
|
|
}
|
|
}
|
|
}
|