blob: 7d94e5de3a8e6c5a9cfde7e8acd2fa0ba83bf3a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<?php
namespace Kanboard\Model;
use Kanboard\Core\Base;
/**
* Class SubtaskTaskConversionModel
*
* @package Kanboard\Model
* @author Frederic Guillot
*/
class SubtaskTaskConversionModel extends Base
{
/**
* Convert a subtask to a task
*
* @access public
* @param integer $project_id
* @param integer $subtask_id
* @return integer
*/
public function convertToTask($project_id, $subtask_id)
{
$subtask = $this->subtaskModel->getById($subtask_id);
$parent_task = $this->taskFinderModel->getById($subtask['task_id']);
$task_id = $this->taskCreationModel->create(array(
'project_id' => $project_id,
'title' => $subtask['title'],
'time_estimated' => $subtask['time_estimated'],
'time_spent' => $subtask['time_spent'],
'owner_id' => $subtask['user_id'],
'swimlane_id' => $parent_task['swimlane_id'],
'priority' => $parent_task['priority'],
'column_id' => $parent_task['column_id'],
'category_id' => $parent_task['category_id']
));
if ($task_id !== false) {
$this->taskLinkModel->create($task_id, $subtask['task_id'], 6);
$this->subtaskModel->remove($subtask_id);
}
return $task_id;
}
}
|