diff --git a/backend/modules/test/Test.php b/backend/modules/test/Test.php new file mode 100644 index 0000000..e4fc6f7 --- /dev/null +++ b/backend/modules/test/Test.php @@ -0,0 +1,24 @@ + [ + 'class' => VerbFilter::className(), + 'actions' => [ + 'delete' => ['POST'], + ], + ], + ]; + } + + /** + * Lists all TestTask models. + * @return mixed + */ + public function actionIndex() + { + $searchModel = new TestTaskSearch(); + $dataProvider = $searchModel->search(Yii::$app->request->queryParams); + + return $this->render('index', [ + 'searchModel' => $searchModel, + 'dataProvider' => $dataProvider, + ]); + } + + /** + * Displays a single TestTask model. + * @param integer $id + * @return mixed + * @throws NotFoundHttpException if the model cannot be found + */ + public function actionView($id) + { + return $this->render('view', [ + 'model' => $this->findModel($id), + ]); + } + + /** + * Creates a new TestTask model. + * If creation is successful, the browser will be redirected to the 'view' page. + * @return mixed + */ + public function actionCreate() + { + $model = new TestTask(); + + if ($model->load(Yii::$app->request->post()) && $model->save()) { + return $this->redirect(['view', 'id' => $model->id]); + } + + return $this->render('create', [ + 'model' => $model, + ]); + } + + /** + * Updates an existing TestTask model. + * If update is successful, the browser will be redirected to the 'view' page. + * @param integer $id + * @return mixed + * @throws NotFoundHttpException if the model cannot be found + */ + public function actionUpdate($id) + { + $model = $this->findModel($id); + + if ($model->load(Yii::$app->request->post()) && $model->save()) { + return $this->redirect(['view', 'id' => $model->id]); + } + + return $this->render('update', [ + 'model' => $model, + ]); + } + + /** + * Deletes an existing TestTask model. + * If deletion is successful, the browser will be redirected to the 'index' page. + * @param integer $id + * @return mixed + * @throws NotFoundHttpException if the model cannot be found + */ + public function actionDelete($id) + { + $this->findModel($id)->delete(); + + return $this->redirect(['index']); + } + + /** + * Finds the TestTask model based on its primary key value. + * If the model is not found, a 404 HTTP exception will be thrown. + * @param integer $id + * @return TestTask the loaded model + * @throws NotFoundHttpException if the model cannot be found + */ + protected function findModel($id) + { + if (($model = TestTask::findOne($id)) !== null) { + return $model; + } + + throw new NotFoundHttpException('The requested page does not exist.'); + } +} diff --git a/backend/modules/test/models/TestTask.php b/backend/modules/test/models/TestTask.php new file mode 100644 index 0000000..a30a8eb --- /dev/null +++ b/backend/modules/test/models/TestTask.php @@ -0,0 +1,8 @@ + $query, + ]); + + $this->load($params); + + if (!$this->validate()) { + // uncomment the following line if you do not want to return any records when validation fails + // $query->where('0=1'); + return $dataProvider; + } + + // grid filtering conditions + $query->andFilterWhere([ + 'id' => $this->id, + 'level' => $this->level, + 'status' => $this->status, + ]); + + $query->andFilterWhere(['like', 'description', $this->description]) + ->andFilterWhere(['like', 'link', $this->link]); + + return $dataProvider; + } +} diff --git a/backend/modules/test/views/test-task/_form.php b/backend/modules/test/views/test-task/_form.php new file mode 100644 index 0000000..3d884ca --- /dev/null +++ b/backend/modules/test/views/test-task/_form.php @@ -0,0 +1,38 @@ + + +
+ = Html::a('Создать', ['create'], ['class' => 'btn btn-success']) ?> +
+ + = GridView::widget([ + 'dataProvider' => $dataProvider, + 'filterModel' => $searchModel, + 'columns' => [ + ['class' => 'yii\grid\SerialColumn'], + +// 'id', + 'description', + [ + 'attribute' => 'link', + 'value' => function ($model) { + return Html::a(Html::encode($model->link), Url::to($model->link)); + }, + 'format' => 'raw', + ], + [ + 'attribute' => 'level', + 'format' => 'raw', + 'filter' => TestTask::getLevelList(), + 'value' => function($model){ + return TestTask::getLevelLabel($model->level); + } + ], + [ + 'attribute' => 'status', + 'format' => 'raw', + 'filter' => StatusHelper::statusList(), + 'value' => function($model){ + return StatusHelper::statusLabel($model->status); + } + ], + + ['class' => 'yii\grid\ActionColumn'], + ], + ]); ?> ++ = Html::a('Список', ['index', 'id' => $model->id], ['class' => 'btn btn-primary']) ?> + = Html::a('Изменить', ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?> + = Html::a('Удалить', ['delete', 'id' => $model->id], [ + 'class' => 'btn btn-danger', + 'data' => [ + 'confirm' => 'Are you sure you want to delete this item?', + 'method' => 'post', + ], + ]) ?> +
+ + = DetailView::widget([ + 'model' => $model, + 'attributes' => [ + 'id', + 'description', + [ + 'attribute' => 'link', + 'value' => function ($model) { + return Html::a(Html::encode($model->link), Url::to($model->link)); + }, + 'format' => 'raw', + ], + [ + 'attribute' => 'level', + 'format' => 'raw', + 'filter' => TestTask::getLevelList(), + 'value' => function($model){ + return TestTask::getLevelLabel($model->level); + } + ], + [ + 'attribute' => 'status', + 'format' => 'raw', + 'filter' => StatusHelper::statusList(), + 'value' => function($model){ + return StatusHelper::statusLabel($model->status); + } + ], + ], + ]) ?> + +