summaryrefslogtreecommitdiff
path: root/demos/time-tracker/protected/App_Code/TimeTrackerUser.php
blob: 5215b31ce816428d67b31f288f269d5dd25cda8d (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
<?php
/**
 * TimeTrackerUser class file.
 *
 * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 * @link http://www.pradosoft.com/
 * @copyright Copyright &copy; 2005-2006 PradoSoft
 * @license http://www.pradosoft.com/license/
 * @package Demos
 */

/**
 * Import TUser and TUserManager
 */
Prado::using('System.Security.TUser');
Prado::using('System.Security.TUserManager');

/**
 * User class for Time Tracker application.
 *
 * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 * @package Demos
 * @since 3.1
 */
class TimeTrackerUser extends TUser
{
	private $_emailAddress;

	/**
	 * @param string user email address
	 */
	public function setEmailAddress($value)
	{
		$this->_emailAddress = $value;
	}

	/**
	 * @return string user email address
	 */
	public function getEmailAddress()
	{
		return $this->_emailAddress;
	}
}