/** @inheritdoc */ public function afterSave($insert, $changedAttributes) { parent::afterSave($insert, $changedAttributes); if ($insert) { // Create the user profile item if ($this->_profile == null) { $this->_profile = Yii::createObject(Profile::className()); } $this->_profile->link('user', $this); } }
/** * Updates an existing profile. * * @param int $id * * @return mixed */ public function actionUpdateProfile($id) { Url::remember('', 'actions-redirect'); $user = $this->findModel($id); $profile = $user->profile; $profile->scenario = "update-profile"; if ($profile == null) { $profile = Yii::createObject(Profile::className()); $profile->link('user', $user); } $event = $this->getProfileEvent($profile); $this->performAjaxValidation($profile); $this->trigger(self::EVENT_BEFORE_PROFILE_UPDATE, $event); if ($profile->load(Yii::$app->request->post()) && $profile->save()) { Yii::$app->getSession()->setFlash('success', Yii::t('user', 'Profile details have been updated')); $this->trigger(self::EVENT_AFTER_PROFILE_UPDATE, $event); return $this->refresh(); } return $this->render('_profile', ['user' => $user, 'profile' => $profile]); }
/** * Shows profile settings form. * * @return string|\yii\web\Response */ public function actionProfile() { $model = $this->finder->findProfileById(Yii::$app->user->identity->getId()); 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('user', 'Your profile has been updated')); $this->trigger(self::EVENT_AFTER_PROFILE_UPDATE, $event); return $this->refresh(); } return $this->render('profile', ['model' => $model]); }