summaryrefslogtreecommitdiff
path: root/app/php/pages/Signup.php
blob: c999e6529a044025e328e71a04a34773c1d84b39 (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
<?php

Prado::using('Application.model.User');

class Signup extends TPage {

    public function checkUsername($sender, $param) {
        $param->IsValid = !User::finder()->countByLogin($this->Login->SafeText);
    }

    public function registerUser($sender, $param) {
        if ($this->Page->IsValid) {
            $newUser = new User();
            $newUser->Login = $this->Login->SafeText;
            $newUser->Password = password_hash($this->Password->Text, PASSWORD_DEFAULT);
            $newUser->IsAdmin = $this->Admin->Checked;
            $newUser->save();
            $this->Response->redirect($this->Request->constructUrl(
                $this->Service->ID,
                NULL
            ));
        }
    }

}

?>