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/index.php
2020-12-18 20:29:24 +01:00

8 lines
No EOL
162 B
PHP

<?php
if($_SESSION['user']->isLoggedIn()) {
if (!isset($path[1])) {
require_once(VIEW_PATH . $path[0] . '.php');
}
}else{
redirect('login');
}