本文整理匯總了PHP中UserRepository::isUserBlocked方法的典型用法代碼示例。如果您正苦於以下問題:PHP UserRepository::isUserBlocked方法的具體用法?PHP UserRepository::isUserBlocked怎麽用?PHP UserRepository::isUserBlocked使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類UserRepository
的用法示例。
在下文中一共展示了UserRepository::isUserBlocked方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: postLogin
/**
* Attempt to do login
*
*/
public function postLogin()
{
//$repo = App::make('UserRepository');
$input = Input::all();
/*$input = array(
'username' =>Input::get('username'),
'password' =>Input::get('password'),
);*/
$err_msg = "";
if ($this->userRepo->login($input)) {
//return Redirect::intended('/');
//Administratorul platformei si utilizatorii care au acces la aplicatia vor putea continua
if (Entrust::can('administrare_platforma') || $this->userRepo->hasAccessApp(1)) {
if (Entrust::can('hostinger')) {
return Redirect::intended('/proba');
} else {
self::registerLogin(Input::get('username'), Input::get('password'), 'Login OK');
Confide::getDepartamente();
return Redirect::intended('/dashboard');
}
} else {
//altfel se afiseaza mesajul de eroare si sunt redirectionati la pagina de login
$err_msg = Lang::get('confide::confide.alerts.access_denied');
}
} else {
if ($this->userRepo->isThrottled($input)) {
$err_msg = Lang::get('confide::confide.alerts.too_many_attempts');
} elseif ($this->userRepo->existsButNotConfirmed($input)) {
$err_msg = Lang::get('confide::confide.alerts.not_confirmed');
} elseif ($this->userRepo->isUserBlocked($input)) {
$err_msg = Lang::get('confide::confide.alerts.user_blocked');
} else {
$err_msg = Lang::get('confide::confide.alerts.wrong_credentials');
}
}
self::registerLogin(Input::get('username'), Input::get('password'), $err_msg);
return Redirect::to('user/login')->withInput(Input::except('password'))->with('error', $err_msg);
}