Last active
August 29, 2015 14:12
-
-
Save evercode1/bb75b7ca8676211c6c07 to your computer and use it in GitHub Desktop.
deleteAction Profile Controller Chap 8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public function actionDelete() | |
| { | |
| $model = Profile::find()->where(['user_id' => Yii::$app->user->identity->id])->one(); | |
| $this->findModel($model->id)->delete(); | |
| return $this->redirect(['site/index']); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment