blob: 7c4570afe88da3309f0a91dd4141ce979809f68b (
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
|
<?php
/**
* @author Daniel Sampedro Bello <darthdaniel85@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2013 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Id$
* @since 3.3
* @package Wsat.pages
*/
class TWsatLogin extends TPage {
public function login() {
if ($this->IsValid) {
$this->Session["wsat_password"] = $this->getService()->getPassword();
$authManager = $this->Application->getModule('auth');
$url = $authManager->ReturnUrl;
if (empty($url)) {
$url = $this->Service->constructUrl('TWsatHome');
}
$this->Response->redirect($url);
}
}
public function validatePassword($sender, $param) {
$config_pass = $this->getService()->getPassword();
$user_pass = $this->password->Text;
$param->IsValid = $user_pass === $config_pass;
}
}
?>
|