19 lines
504 B
PHP
19 lines
504 B
PHP
<?php
|
|
$defflip = (!cfip()) ? exit(header('HTTP/1.1 401 Unauthorized')) : 1;
|
|
|
|
// ACL check
|
|
switch($setting->getValue('acl_about_page', 1)) {
|
|
case '0':
|
|
if ($user->isAuthenticated()) {
|
|
$smarty->assign("CONTENT", "default.tpl");
|
|
}
|
|
break;
|
|
case '1':
|
|
$smarty->assign("CONTENT", "default.tpl");
|
|
break;
|
|
case '2':
|
|
$_SESSION['POPUP'][] = array('CONTENT' => 'Page currently disabled. Please try again later.', 'TYPE' => 'alert alert-danger');
|
|
$smarty->assign("CONTENT", "disabled.tpl");
|
|
break;
|
|
}
|