1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Accommodation_Management/controller/manager.php

29 lines
1 KiB
PHP
Raw Normal View History

2021-01-14 19:01:32 +01:00
<?php
if ($_SESSION['USER']->isLoggedIn() && $_SESSION['USER']->getType() == 'Staff') {
$alert = '';
if (isset($path[1],$path[2]) && Accomodation::fetchById($path[1]) !== false) {
switch ($path[2]) {
case 'view':
$hotel = Accomodation::fetchById($path[1]);
$reservations = AccomodationReservation::fetchByAccomodationId($hotel->getId());
require_once(VIEW_PATH . $path[2] . '_' . $path[0] . '.php');
break;
case 'add':
break;
case 'delete':
if(getPost('email', false) && getPost('start', false)){
if(AccomodationReservation::remove($path[1], getPost('email'),getPost('start'))){
echo 'ok';
}
2021-01-14 19:01:32 +01:00
}
break;
default:
redirect();
}
} else {
$hotels = Accomodation::fetch();
require_once(VIEW_PATH . $path[0] . '.php');
}
} else {
redirect('login');
}