/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = ParamCoordinates::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', 'code', $this->code]); return $dataProvider; }
?> <?php echo $form->field($model, 'scales')->textInput(['maxlength' => 250]); ?> <?php echo $form->field($model, 'init_extent')->textInput(['maxlength' => 250]); ?> <?php echo $form->field($model, 'max_extent')->textInput(['maxlength' => 250]); ?> <?php $items = ArrayHelper::map(ParamCoordinates::find()->all(), 'code', 'name'); ?> <?php echo $form->field($model, 'projection')->dropDownList($items, ['prompt' => '---- Select Coordinates System ----']); ?> <?php echo $form->field($model, 'units')->dropDownList(['m' => 'Meters', 'km' => 'kilometers', 'ml' => 'Miles'], ['prompt' => '---- Select Map Units ----']); ?> <?php echo $form->field($model, 'active')->checkbox(); ?> <?php echo $form->field($model, 'theme')->dropDownList(['default' => 'Default', 'mobile' => 'Mobile'], ['prompt' => '---- Select Theme ----']);
/** * Finds the ParamCoordinates model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return ParamCoordinates the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = ParamCoordinates::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }