blob: dd6b479d653033b5c70e078d3d807110378198b5 (
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
|
<?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'],
'category_id' => $parent_task['category_id']
));
if ($task_id !== false) {
$this->subtaskModel->remove($subtask_id);
}
return $task_id;
}
}
|