blob: 0bbdc53fc9c49624d36c9957e544c93965a6b6dd (
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
|
<?php
/**
* Description of Inicio
*
* @author daniels
*/
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;
}
}
?>
|