summaryrefslogtreecommitdiff
path: root/demos/time-tracker/protected/App_Data/TimeTrackerUserTypeHandler.php
blob: 12a8a23e08129b4f34c2bbe6223aabd4d86c0eab (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
<?php
/**
 * TimeTrackerUserTypeHandler 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
 */

/**
 * SQLMap type handler for TimeTrackerUser.
 * The TimeTrackerUser requires an instance of IUserManager in constructor.
 *
 * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 * @package Demos
 * @since 3.1
 */
class TimeTrackerUserTypeHandler extends TSqlMapTypeHandler
{
	/**
	 * Not implemented.
	 */
	public function getParameter($object)
	{
		throw new TimeTrackerException('Not implemented');
	}

	/**
	 * Not implemented.
	 */
	public function getResult($string)
	{
		throw new TimeTrackerException('Not implemented');
	}

	/**
	 * Creates a new instance of TimeTrackerUser
	 * @param array result data
	 * @return TimeTrackerUser new user instance
	 */
	public function createNewInstance($row=null)
	{
		$manager = Prado::getApplication()->getModule('users');
		if(is_null($manager))
			$manager = new UserManager();
		return new TimeTrackerUser($manager);
	}
}