summaryrefslogtreecommitdiff
path: root/demos/time-tracker/protected/pages/TimeTracker/Login.php
blob: d8c5182fa2aaae8aea2659a5397140bf2f934af8 (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
60
61
62
63
64
65
66
67
68
69
70
71
<?php

Prado::using('Application.App_Data.ezpdo.Models.*');

/**
 * Login Page 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/
 * @version $Revision: $  $16/07/2006: $
 * @package Demos
 */

/**
 * Login page class.
 * 
 * Validate the user credentials and redirect to requested page 
 * if successful.
 *
 * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 * @version $Revision: $  $16/07/2006: $
 * @package Demos
 * @since 3.1
 */
class Login extends TPage
{
	
	function onLoad($param)
	{
		//$category = new TimeEntryCategory();
		$ezpdo = $this->Application->Modules['ezpdo']->getConnection();
		//$cats = $ezpdo->find('from TimeEntryCategory');
		$category = $ezpdo->create('TimeEntryCategory');
		//$category->Name = "Category 1";
		//$category->Abbreviation = "CAT1";
		var_dump($category);
		//$ezpdo->commit($category);
	}
	
	/**
	 * Validates the username and password.
	 * @param TControl custom validator that created the event.
	 * @param TServerValidateEventParameter validation parameters. 
	 */
	public function validateUser($sender, $param)
	{
		$authManager=$this->Application->getModule('auth');
		if(!$authManager->login($this->username->Text,$this->password->Text))
			$param->IsValid=false;;
	}
	
	/**
	 * Redirect to the requested page if login is successful.
	 * @param TControl button control that created the event.
	 * @param TEventParameter event parameters.
	 */
	public function doLogin($sender, $param)
	{
		if($this->Page->IsValid)
		{
			$auth = $this->Application->getModule('auth');
			if($this->remember->Checked)
				$auth->rememberSignon($this->User);
			$this->Response->redirect($auth->getReturnUrl());
		}
	}
}

?>