本文整理汇总了PHP中SJB_HelperFunctions::get_request_data_params方法的典型用法代码示例。如果您正苦于以下问题:PHP SJB_HelperFunctions::get_request_data_params方法的具体用法?PHP SJB_HelperFunctions::get_request_data_params怎么用?PHP SJB_HelperFunctions::get_request_data_params使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SJB_HelperFunctions
的用法示例。
在下文中一共展示了SJB_HelperFunctions::get_request_data_params方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: admin_auth
/**
* authorizing administrator
*
* Function checks if there's active administrator.
* If it is, then it return true. If it's not it outputs
* form for logging into system untill administrator logins system
*
* @return bool 'true' administrator has authorized or 'false' otherwise
*/
public static function admin_auth()
{
$error = array();
$tp = SJB_System::getTemplateProcessor();
$params = SJB_HelperFunctions::form(array('action' => 'login') + SJB_HelperFunctions::get_request_data_params());
if (SJB_Request::getVar('action') == 'login') {
if (!SJB_Admin::isAdminExist(SJB_Request::getVar('username', ''), SJB_Request::getVar('password')) && !SJB_SubAdmin::isSubAdminExist()) {
if (is_null(SJB_Session::getValue('adminLoginCounter'))) {
SJB_Session::setValue('adminLoginCounter', 1);
} else {
SJB_Session::setValue('adminLoginCounter', SJB_Session::getValue('adminLoginCounter') + 1);
}
$error['LOGIN_PASS_NOT_CORRECT'] = true;
}
if (SJB_Captcha::getInstance($tp, $_REQUEST)->isValid($error) && empty($error)) {
return SJB_SubAdmin::isSubAdminExist() ? SJB_SubAdmin::admin_auth() : SJB_Admin::admin_login(SJB_Request::getVar('username', ''));
}
}
header('Content-type: text/html;charset=utf-8', true);
$tp->assign('form_hidden_params', $params);
$tp->assign('ERROR', $error);
$tp->display('auth.tpl');
return false;
}