本文整理匯總了PHP中Auth_Controller::action_kickguest方法的典型用法代碼示例。如果您正苦於以下問題:PHP Auth_Controller::action_kickguest方法的具體用法?PHP Auth_Controller::action_kickguest怎麽用?PHP Auth_Controller::action_kickguest使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Auth_Controller
的用法示例。
在下文中一共展示了Auth_Controller::action_kickguest方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: header
loadBadBehavior();
// Load the current or SSI theme. (just use $ssi_theme = id_theme;)
loadTheme(isset($ssi_theme) ? (int) $ssi_theme : 0);
// @todo: probably not the best place, but somewhere it should be set...
if (!headers_sent()) {
header('Content-Type: text/html; charset=UTF-8');
}
// Take care of any banning that needs to be done.
if (isset($_REQUEST['ssi_ban']) || isset($ssi_ban) && $ssi_ban === true) {
is_not_banned();
}
// Do we allow guests in here?
if (empty($ssi_guest_access) && empty($modSettings['allow_guestAccess']) && $user_info['is_guest'] && basename($_SERVER['PHP_SELF']) != 'SSI.php') {
require_once CONTROLLERDIR . '/Auth.controller.php';
$controller = new Auth_Controller();
$controller->action_kickguest();
obExit(null, true);
}
// Load the stuff like the menu bar, etc.
if (isset($ssi_layers)) {
$template_layers = Template_Layers::getInstance();
$template_layers->removeAll();
foreach ($ssi_layers as $layer) {
$template_layers->addBegin($layer);
}
template_header();
} else {
setupThemeContext();
}
// We need to set up user agent, and make more checks on the request
$req = request();