summaryrefslogtreecommitdiff
path: root/demos/blog/protected/Common/BlogUser.php
blob: 93990f691fe1e0366d07aa4faaa1e1adce6f9799 (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
<?php
/**
 * BlogUser class file
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @link http://www.pradosoft.com/
 * @copyright Copyright &copy; 2006 PradoSoft
 * @license http://www.pradosoft.com/license/
 * @version $Id: BlogUser.php 3189 2012-07-12 12:16:21Z ctrlaltca $
 */

Prado::using('System.Security.TUser');

/**
 * BlogUser class
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @link http://www.pradosoft.com/
 * @copyright Copyright &copy; 2006 PradoSoft
 * @license http://www.pradosoft.com/license/
 */
class BlogUser extends TUser
{
	private $_id;

	public function getID()
	{
		return $this->_id;
	}

	public function setID($value)
	{
		$this->_id=$value;
	}

	public function getIsAdmin()
	{
		return $this->isInRole('admin');
	}

	public function saveToString()
	{
		$a=array($this->_id,parent::saveToString());
		return serialize($a);
	}

	public function loadFromString($data)
	{
		if(!empty($data))
		{
			list($id,$str)=unserialize($data);
			$this->_id=$id;
			return parent::loadFromString($str);
		}
		else
			return $this;
	}
}