<?php session_start(); if (!isset($_SESSION['user']) || $_SESSION['user']['role'] != "admin") { header("Location: index.php"); } include_once 'connect.php'; include_once 'db/UserDB.php'; include_once 'db/GenericDB.php'; $db = new DBHandler(); $userDB = new UserDB($db); $genericDB = new GenericDB($db); if ($_SERVER['REQUEST_METHOD'] === 'POST') { $_SESSION['settings']['SystemMessage'] = $_POST['generalMessage']; $_SESSION['settings']['MaxReservationCount'] = $_POST['maxRCount']; $genericDB->PersistSettings(); } $genericDB->GetSettings(); $users = $userDB->GetAllUsers(); ?> <!DOCTYPE> <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <title>BookÉTS</title> <!-- Favicon --> <link rel="shortcut icon" type="image/icon" href="assets/images/favicon.ico"/>
<?php session_start(); include_once 'connect.php'; include_once 'db/UserDB.php'; include_once 'db/GenericDB.php'; $db = new DBHandler(); $userDB = new UserDB($db); $genericDB = new GenericDB($db); $genericDB->GetSettings(); ?> <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <title>BookÉTS</title> <!-- Favicon --> <link rel="shortcut icon" type="image/icon" href="assets/images/favicon.ico"/> <!-- Font Awesome --> <link href="assets/css/font-awesome.css" rel="stylesheet"> <!-- Bootstrap --> <link href="assets/css/bootstrap.css" rel="stylesheet"> <!-- Slick slider --> <link rel="stylesheet" type="text/css" href="assets/css/slick.css"/> <!-- Fancybox slider --> <link rel="stylesheet" href="assets/css/jquery.fancybox.css" type="text/css" media="screen" /> <!-- Animate css -->