本文整理汇总了PHP中common\models\User::getCurrent方法的典型用法代码示例。如果您正苦于以下问题:PHP User::getCurrent方法的具体用法?PHP User::getCurrent怎么用?PHP User::getCurrent使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类common\models\User
的用法示例。
在下文中一共展示了User::getCurrent方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: beforeAction
/**
**在请求交由action处理之前,判断用户属性,如果当前用户没有登录,则将页面跳转到登录页面,即该模块的所有操作都需要在用户登录状态下进行.
* @param \yii\base\Action $action
* @return bool|\yii\web\Response
* @throws \yii\web\ForbiddenHttpException
*/
public function beforeAction($action)
{
if (!User::getCurrent()) {
return Yii::$app->user->loginRequired();
}
return parent::beforeAction($action);
}
示例2: actionChangePassword
/**
**显示修改账号登陆密码的表单(get),修改账号的登陆密码(post).
* @return string whether or not the password has been changed successfully
*/
public function actionChangePassword()
{
if (Yii::$app->request->isGet) {
$csrf = Yii::$app->request->csrfToken;
return $this->render('change-password', ['csrf' => $csrf]);
}
$old_password = Yii::$app->request->post('old_password');
$new_password = Yii::$app->request->post('new_password');
$new_password_confirm = Yii::$app->request->post('new_password_confirm');
if (!$old_password || !$new_password || !$new_password_confirm) {
AjaxResponse::fail(null, 'Three inputs are required');
}
if ($new_password != $new_password_confirm) {
AjaxResponse::fail(null, 'Your confirm password is different from the new password. Please try again.');
}
$user = User::getCurrent();
if (!$user->validatePassword($old_password)) {
AjaxResponse::fail(null, 'Your old password was incorrect. Please try again.');
}
$user->setPassword($new_password);
$user->save();
Yii::$app->user->logout();
AjaxResponse::success();
}