summaryrefslogtreecommitdiff
path: root/framework/Wsat/pages/TWsatLogin.php
blob: 21994c07716592d3e71d89a1b01a2440c09ad48c (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
<?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();

                        $url = $this->Service->constructUrl('TWsatHome');
                        $this->Response->redirect($url);
                }
        }

        public function validatePassword($sender, $param)
        {
                $config_pass = $this->Service->Password;
                $user_pass = $this->password->Text;
                $param->IsValid = $user_pass === $config_pass;
        }

}