From dfe234a7aaaacedcc94716f955b44a1b50c4a057 Mon Sep 17 00:00:00 2001 From: emkael Date: Wed, 6 Apr 2016 13:50:31 +0200 Subject: * components -> controls --- app/php/components/RegistrationForm.php | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 app/php/components/RegistrationForm.php (limited to 'app/php/components/RegistrationForm.php') 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 @@ -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) - ); - } - } - -} - -?> -- cgit v1.2.3