diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-09-04 21:09:57 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-09-04 21:09:57 -0400 |
commit | f3b3ea69fb46e45bf3598aa7a6bcf62aa80e4703 (patch) | |
tree | 55baf83ca112d7ace75379dbde5e1afec7a854e7 /src | |
parent | b7280e6e91eb0f6da5a59a8ffd3da6f7c83e2815 (diff) |
mv src/controllers/Auth{,Page}.class.php, change a few things (I'm terrible)
Diffstat (limited to 'src')
-rw-r--r-- | src/controllers/AuthPage.class.php (renamed from src/controllers/Auth.class.php) | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/controllers/Auth.class.php b/src/controllers/AuthPage.class.php index 86bd83f..127bc1f 100644 --- a/src/controllers/Auth.class.php +++ b/src/controllers/AuthPage.class.php @@ -1,8 +1,8 @@ <?php -Router::register('auth', 'Auth'); +Router::register('auth', 'AuthPage'); -class Auth extends Controller { +class AuthPage extends Controller { public function index($routed, $remainder) { // So if $_POST['action'] isn't set, it will trip on '', which // is great, so we don't have to handle GET and PUT separately. @@ -22,7 +22,7 @@ class Auth extends Controller { if ( isset($_POST['username']) && isset($_POST['password'])) { $username = $_POST['username']; $password = $_POST['password']; - $login = $mm->login($username, $password); + $login = Login::login($username, $password); } $vars = array(); @@ -36,17 +36,16 @@ class Auth extends Controller { $this->showView('auth/login', $vars); } private function logout() { - global $mm; - $mm->logout(); + Login::logout(); $this->showView('auth/logout'); } private function maybe_login() { global $mm; - $uid = $mm->isLoggedIn(); + $uid = Login::isLoggedIn(); if ($uid===false) { $this->login(); } else { - $username = $mm->getUsername($uid); + $username = $mm->database()->getUsername($uid); $this->showView('auth/index', array('username'=>$username)); } |