[ 'class' => AccessControl::className(), //'only' => ['index', 'update'], 'rules' => [ [ 'allow' => true, 'roles' => ['@'], ], ], ], ]; } /** * Displays a single Product model. * @return mixed * @throws NotFoundHttpException if the model cannot be found */ public function actionIndex() { $id_user = Yii::$app->user->id; echo $id_user; // die(); $result = UserCard::find()->where(['id_user' => $id_user])->asArray()->all(); if($result) { $id = $result[0]['id']; $dataProvider = new ActiveDataProvider([ 'query' => FieldsValueNew::find() ->where(['item_id' => $id, 'item_type' => FieldsValueNew::TYPE_PROFILE]) ->orderBy('order'), 'pagination' => [ 'pageSize' => 200, ], ]); $skills = CardSkill::find()->where(['card_id' => $id])->with('skill')->all(); $achievements = AchievementUserCard::find() ->where(['user_card_id' => $id]) ->innerJoinWith(['achievement' => function($query) { $query->andWhere(['status' => \common\models\Achievement::STATUS_ACTIVE]); }]) ->all(); return $this->render('view', [ 'model' => $this->findModel($id), 'modelFildValue' => $dataProvider, 'skills' => $skills, 'achievements' => $achievements, ]); } else return $this->render('index', ['info' => '