Exemplo n.º 1
0
 public function actionShowUserProfile($id)
 {
     $user = User::findOne(['id' => $id]);
     $model = ProfileForm::cacheCurrentProfile($user);
     return $this->render('user-profile', ['model' => $model]);
 }