summaryrefslogtreecommitdiff
path: root/framework/Wsat/pages/TWsatLogin.php
blob: 4b3ba0c1e0e719a0a62007f7d2cb02f00fca9290 (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
<?php

/**
 * @author Daniel Sampedro Bello <darthdaniel85@gmail.com>
 * @link http://www.pradosoft.com/
 * @copyright Copyright &copy; 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;
    }

}