summaryrefslogtreecommitdiff
path: root/app/php/pages/Signup.php
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-03-10 17:14:25 +0100
committeremkael <emkael@tlen.pl>2016-03-10 17:14:25 +0100
commit48619109291ed90bd0e11f4be27384ca7a95ddf4 (patch)
tree5ca3d127e03b0dcaf8007257c59332c909523afc /app/php/pages/Signup.php
parentbb786c1e19aeaa44b81b47265a284e8737c09e65 (diff)
* registration form as a component
Diffstat (limited to 'app/php/pages/Signup.php')
-rw-r--r--app/php/pages/Signup.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/app/php/pages/Signup.php b/app/php/pages/Signup.php
deleted file mode 100644
index e989eb6..0000000
--- a/app/php/pages/Signup.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?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 = DbUser::generatePassword($this->Password->Text);
- $newUser->IsAdmin = $this->Admin->Checked;
- $newUser->save();
- $this->Response->redirect(
- $this->Service->constructUrl(NULL)
- );
- }
- }
-
-}
-
-?>