blob: d9500710e5178f6cdca15eea4f36613f9006a008 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
<?php
namespace Kanboard\Formatter;
use Kanboard\Core\Filter\FormatterInterface;
/**
* Board Task Formatter
*
* @package formatter
* @author Frederic Guillot
*/
class BoardTaskFormatter extends BaseFormatter implements FormatterInterface
{
protected $tasks = array();
protected $columnId = 0;
protected $swimlaneId = 0;
/**
* Set tasks
*
* @access public
* @param array $tasks
* @return $this
*/
public function withTasks(array $tasks)
{
$this->tasks = $tasks;
return $this;
}
/**
* Set columnId
*
* @access public
* @param integer $columnId
* @return $this
*/
public function withColumnId($columnId)
{
$this->columnId = $columnId;
return $this;
}
/**
* Set swimlaneId
*
* @access public
* @param integer $swimlaneId
* @return $this
*/
public function withSwimlaneId($swimlaneId)
{
$this->swimlaneId = $swimlaneId;
return $this;
}
/**
* Apply formatter
*
* @access public
* @return array
*/
public function format()
{
return array_values(array_filter($this->tasks, array($this, 'filterTasks')));
}
/**
* Keep only tasks of the given column and swimlane
*
* @access public
* @param array $task
* @return bool
*/
public function filterTasks(array $task)
{
return $task['column_id'] == $this->columnId && $task['swimlane_id'] == $this->swimlaneId;
}
}
|