roles_class.php
1.09 KB
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
<?php
/**
* Tiny - A PHP Framework For Web Artisans
* @author Tiny <tinylofty@gmail.com>
* @copyright Copyright(c) 2010-2014 http://www.tinyrise.com All rights reserved
* @version 1.0
*/
/**
* 角色类
*
* @author Tiny
* @class Roles
*/
class Roles
{
private $roles;
private $name = 'roles';
/**
* 构造角色类,考虑到角色的修改,即时有效性,暂不考虑用Session保存
*
* @access public
* @param mixed $roles
* @return mixed
*/
public function __construct($roles=null)
{
if($roles!==null)
{
$key = $this->name.'_'.$roles;
//if(Session::get($key)===null)
{
$model = new Model('roles');
$result=$model->where("id=".$roles)->find();
$this->roles = $result;
//Session::set($key,$this->roles);
}
/*else
{
$this->roles=Session::get($key);
}*/
}
}
/**
* 取得当前的角色
*
* @access public
* @return mixed
*/
public function getRoles()
{
return $this->roles;
}
}
?>