public function save()
 {
     if (!Authentication::authRole(['staff'])) {
         View::redirect('./');
         return;
     }
     $this->saveProcess();
     View::redirect('./?p=staff-profile-edit', FALSE);
 }
Exemple #2
0
 private static function redirectLogin($hasMessage = FALSE)
 {
     View::redirect('./logout.php', !$hasMessage);
 }
Exemple #3
0
<?php

use App\App;
use App\View\View;
use App\Authentication\Authentication;
use App\Authentication\LoginController;
include './config.php';
include './autoload.php';
App::begin();
Authentication::authLogin();
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    if (LoginController::login()) {
        View::redirect('./');
    } else {
        View::redirect('./login.php', FALSE);
    }
} else {
    LoginController::loginPage();
}
App::end();