本文整理匯總了PHP中app\modules\user\models\User::updatePassword方法的典型用法代碼示例。如果您正苦於以下問題:PHP User::updatePassword方法的具體用法?PHP User::updatePassword怎麽用?PHP User::updatePassword使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類app\modules\user\models\User
的用法示例。
在下文中一共展示了User::updatePassword方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: updatePassword
public function updatePassword()
{
$this->checkCurrentUser();
$rules = array('now_password' => 'required', 'password' => 'min:5|confirmed|different:now_password', 'password_confirmation' => 'required_with:password|min:5');
//password update.
$nowPassword = Input::get('now_password');
$password = Input::get('password');
$passwordconf = Input::get('password_confirmation');
$validator = Validator::make(Input::only('now_password', 'password', 'password_confirmation'), $rules);
if ($validator->fails()) {
return Redirect::back()->withErrors($validator);
}
//var_dump(Hash::make($nowPassword));exit;
$currentUserP = User::findCurrentPassword($this->currentUserId, Hash::make($nowPassword));
if (!Hash::check(Input::get('now_password'), $currentUserP[0]->password)) {
Session::flash('error', 'incorrect current password');
return Redirect::back()->withErrors('Password incorrect');
}
User::updatePassword($this->currentUserId, Hash::make($password));
return Redirect::back()->with('success', true)->with('message', 'User updated.');
}