/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = ParamFormat::find(); $dataProvider = new ActiveDataProvider(['query' => $query]); $this->load($params); if (!$this->validate()) { // uncomment the following line if you do not want to any records when validation fails // $query->where('0=1'); return $dataProvider; } $query->andFilterWhere(['id' => $this->id]); $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'format', $this->format]); return $dataProvider; }
?> <?php echo $form->field($model, 'layer')->textInput(); ?> <?php echo $form->field($model, 'fields')->textInput(); ?> <?php echo $form->field($model, 'layer_group')->textInput(); ?> <?php $items_format = ArrayHelper::map(ParamFormat::find()->all(), 'format', 'name'); ?> <?php echo $form->field($model, 'layer_type')->dropDownList($items_format); ?> <?php echo $form->field($model, 'visible')->checkbox(); ?> <?php echo $form->field($model, 'show_toc')->checkbox(); ?> <?php echo $form->field($model, 'opacity')->textInput();