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

8 lines
162 B
PHP
Raw Permalink Normal View History

2020-12-18 20:29:24 +01:00
<?php
2020-12-20 03:56:05 +01:00
if($_SESSION['USER']->isLoggedIn()) {
2020-12-18 20:29:24 +01:00
if (!isset($path[1])) {
require_once(VIEW_PATH . $path[0] . '.php');
}
}else{
redirect('login');
}