示例#1
0
 /** @inheritdoc */
 public function afterSave($insert, $changedAttributes)
 {
     parent::afterSave($insert, $changedAttributes);
     if ($insert) {
         if ($this->_profile == null) {
             $this->_profile = Yii::createObject(Profile::className());
         }
         $this->_profile->link('user', $this);
     }
     if ($insert) {
         $this->assignRoles();
     }
     if ($this->scenario == self::SCENARIO_UPDATE_ROLES) {
         $auth = Yii::$app->authManager;
         $auth->revokeAll($this->id);
         foreach ($this->_roles as $role) {
             $auth->assign($auth->getRole($role), $this->id);
         }
     }
 }
示例#2
0
 /**
  * Shows profile settings form.
  *
  * @return string|\yii\web\Response
  */
 public function actionProfile()
 {
     $model = Profile::find()->byId(Yii::$app->user->identity->getId())->one();
     if ($model == null) {
         $model = Yii::createObject(Profile::className());
         $model->link('user', Yii::$app->user->identity);
     }
     $event = $this->getProfileEvent($model);
     $this->performAjaxValidation($model);
     $this->trigger(self::EVENT_BEFORE_PROFILE_UPDATE, $event);
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         Yii::$app->getSession()->setFlash('success', Yii::t('users', 'Your profile has been updated'));
         $this->trigger(self::EVENT_AFTER_PROFILE_UPDATE, $event);
         return $this->refresh();
     }
     return $this->render('profile', ['model' => $model]);
 }