<?php
if($_SESSION['USER']->isLoggedIn()) {
if(isset($path[1])) {
switch ($path[1]) {
case 'add':
require_once(VIEW_PATH.$path[1] . '_' . $path[0].'.php');
break;
case 'edit':
default:
redirect();
}
}else{
redirect('login');