diff options
Diffstat (limited to 'app/php/components/RegistrationForm.php')
-rw-r--r-- | app/php/components/RegistrationForm.php | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/app/php/components/RegistrationForm.php b/app/php/components/RegistrationForm.php deleted file mode 100644 index 71d4df1..0000000 --- a/app/php/components/RegistrationForm.php +++ /dev/null @@ -1,26 +0,0 @@ -<?php - -Prado::using('Application.model.User'); - -class RegistrationForm extends TTemplateControl { - - 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) - ); - } - } - -} - -?> |