php-mpos/include/pages/admin.inc.php
2015-04-26 20:19:50 -05:00

12 lines
324 B
PHP

<?php
$defflip = (!cfip()) ? exit(header('HTTP/1.1 401 Unauthorized')) : 1;
// Check user to ensure they are admin
if (!$user->isAuthenticated() || !$user->isAdmin($_SESSION['USERDATA']['id'])) {
header("HTTP/1.1 404 Page not found");
die("404 Page not found");
}
// Tempalte specifics
$smarty->assign("CONTENT", "");