本文整理汇总了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();