Ejemplo n.º 1
0
 /**
  * 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;
 }
Ejemplo n.º 2
0
 /**
  * Finds the ParamFormat model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return ParamFormat the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = ParamFormat::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Ejemplo n.º 3
0
?>

    <?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();