diff options
| author | George Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2023-03-28 03:38:35 +0300 |
|---|---|---|
| committer | George Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2023-03-28 03:38:35 +0300 |
| commit | 5ce005a4f120c7470cd84c1af306b64c52e3dbfc (patch) | |
| tree | f93fa229273aad02501d3ecb326091bb2f7d31aa /html/app/controllers | |
| parent | fa7303bc99ed56e6770928d59e16ee3306e26750 (diff) | |
| download | classroom-5ce005a4f120c7470cd84c1af306b64c52e3dbfc.tar.gz classroom-5ce005a4f120c7470cd84c1af306b64c52e3dbfc.tar.bz2 classroom-5ce005a4f120c7470cd84c1af306b64c52e3dbfc.zip | |
custom user manager extended class (work in progress)
Diffstat (limited to 'html/app/controllers')
| -rw-r--r-- | html/app/controllers/Classroom_user.php | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/html/app/controllers/Classroom_user.php b/html/app/controllers/Classroom_user.php deleted file mode 100644 index 616ebf6..0000000 --- a/html/app/controllers/Classroom_user.php +++ /dev/null @@ -1,69 +0,0 @@ -<?php -namespace app\controllers; - -use UserManager; -use Registry; -# use app\models\admin\User_model; - - - -/** ClassUserManager - * - * extends (anom's) UserManager - * - * this way it specializes the UserManagement - * according to this app's special rules - * - */ -class Classroom_user extends UserManager -{ - - private $user_identifier = 'email'; // identifing user field (username, email, etc ) - - protected $user; - - public function __construct() - { - // $this->user = new UserManager(); - - } - - - public function register_user() - { - $req = Registry::get('REQUEST'); - print_r($req->POST); die(); - - } - - - public function login_user() - { - - } - - - /** forgot password - * - * send an otp - * (then verify) - * - */ - public function forgot_password() - { - - } - - - /** Verify Account - * - * check if posted OTP matched the one sent to the user - * - */ - public function verify_otp() - { - - } - - -}
\ No newline at end of file |
