blob: c56cfb35b4cca3b8680b2e73dac491e2b6fa547a (
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
|
<?php
namespace Kanboard\Api;
use Kanboard\Core\Base;
/**
* Category API controller
*
* @package Kanboard\Api
* @author Frederic Guillot
*/
class CategoryApi extends Base
{
public function getCategory($category_id)
{
return $this->categoryModel->getById($category_id);
}
public function getAllCategories($project_id)
{
return $this->categoryModel->getAll($project_id);
}
public function removeCategory($category_id)
{
return $this->categoryModel->remove($category_id);
}
public function createCategory($project_id, $name)
{
$values = array(
'project_id' => $project_id,
'name' => $name,
);
list($valid, ) = $this->categoryValidator->validateCreation($values);
return $valid ? $this->categoryModel->create($values) : false;
}
public function updateCategory($id, $name)
{
$values = array(
'id' => $id,
'name' => $name,
);
list($valid, ) = $this->categoryValidator->validateModification($values);
return $valid && $this->categoryModel->update($values);
}
}
|