1 | <?php |
||
10 | class WebUser extends CWebUser |
||
11 | { |
||
12 | |||
13 | /** |
||
14 | * @var User the user model |
||
15 | */ |
||
16 | private $_model; |
||
17 | |||
18 | /** |
||
19 | * @return string the username of the current user |
||
20 | */ |
||
21 | public function getName() |
||
27 | |||
28 | /** |
||
29 | * Returns the user's role |
||
30 | * @return string |
||
31 | */ |
||
32 | public function getRole() |
||
38 | |||
39 | /** |
||
40 | * Loads the user model |
||
41 | * @return User the user |
||
42 | */ |
||
43 | protected function loadUser() |
||
53 | |||
54 | } |
||
55 |