blob: 91e00e852dc43cab10186b1d0d392cff4cca0fb0 (
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
83
84
85
86
87
88
89
|
<?php
/**
* Role.php
*
* @author Dennis Reil <dennis.reil@offis.de>
* @author Michael Riehemann <michael.riehemann@uni-oldenburg.de>
* @package pluginengine
* @subpackage core
* @copyright 2009 Stud.IP
* @license http://www.gnu.org/licenses/gpl.html GPL Licence 3
*/
class Role
{
const UNKNOWN_ROLE_ID = null;
public $roleid;
public $rolename;
public $systemtype;
/**
* Constructor
*/
public function __construct($id = self::UNKNOWN_ROLE_ID, $name = '', $system = false)
{
$this->setRoleid($id);
$this->setRolename($name);
$this->setSystemtype($system);
}
/**
* Returns the role's id.
*
* @return int
*/
public function getRoleid()
{
return $this->roleid;
}
/**
* Set the role's id.
*
* @param int $newid
*/
public function setRoleid($newid)
{
$this->roleid = $newid;
}
/**
* Returns the role's name.
*
* @return string
*/
public function getRolename()
{
return $this->rolename;
}
/**
* Set the role's name.
*
* @param string $newrole
*/
public function setRolename($newrole)
{
$this->rolename = $newrole;
}
/**
* Returns whether the role is a system role.
*
* @return boolean
*/
public function getSystemtype()
{
return $this->systemtype;
}
/**
* Sets whether the role is a system role.
*
* @param boolean $newtype
*/
public function setSystemtype($newtype)
{
$this->systemtype = (bool) $newtype;
}
}
|