php-mpos/public/include/pages/admin.inc.php
2014-03-01 17:56:23 -07:00

13 lines
327 B
PHP
Executable File

<?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", "");
?>