本文整理汇总了PHP中module_security::process_login方法的典型用法代码示例。如果您正苦于以下问题:PHP module_security::process_login方法的具体用法?PHP module_security::process_login怎么用?PHP module_security::process_login使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类module_security
的用法示例。
在下文中一共展示了module_security::process_login方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _e
// try to process an auto login.
module_security::auto_login();
}
if (isset($_REQUEST['_process_reset'])) {
if (class_exists('module_captcha', false)) {
if (!module_captcha::check_captcha_form()) {
// captcha was wrong.
_e('Sorry the captcha code you entered was incorrect. Please <a href="%s" onclick="%s">go back</a> and try again.', '#', 'window.history.go(-1); return false;');
exit;
}
}
module_security::process_password_reset();
}
if (isset($_REQUEST['_process_login'])) {
// check recaptcha
module_security::process_login();
}
if (isset($_REQUEST['_logout'])) {
module_security::logout();
header("Location: index.php");
exit;
}
if (!_UCM_INSTALLED && module_security::getcred()) {
module_security::logout();
}
// wrap the module loading request into an array
// this way we can load multiple modules and pages around eachother.
// awesome.
$inner_content = array();
$page_title_delim = ' » ';
$page_title = '';