blob: 93fe1dccd48e1883f4501ff8304de587bb433ec1 (
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
81
82
|
<?php
namespace Kanboard\Model;
use Kanboard\Core\Base;
/**
* Class ProjectRoleModel
*
* @package Kanboard\Model
* @author Frederic Guillot
*/
class ProjectRoleModel extends Base
{
const TABLE = 'project_has_roles';
/**
* Get all project roles
*
* @param int $project_id
* @return array
*/
public function getAll($project_id)
{
return $this->db->table(self::TABLE)
->eq('project_id', $project_id)
->asc('role')
->findAll();
}
/**
* Create a new project role
*
* @param int $project_id
* @param string $role
* @return bool|int
*/
public function create($project_id, $role)
{
return $this->db
->table(self::TABLE)
->persist(array(
'project_id' => $project_id,
'role' => $role,
));
}
/**
* Update a project role
*
* @param int $role_id
* @param int $project_id
* @param string $role
* @return bool
*/
public function update($role_id, $project_id, $role)
{
return $this->db
->table(self::TABLE)
->eq('role_id', $role_id)
->eq('project_id', $project_id)
->update(array(
'role' => $role,
));
}
/**
* Remove a project role
*
* @param int $project_id
* @param int $role_id
* @return bool
*/
public function remove($project_id, $role_id)
{
return $this->db
->table(self::TABLE)
->eq('project_id', $project_id)
->eq('role_id', $role_id)
->remove();
}
}
|