public static function findAllForDropDownList() { $models = Paises::find()->orderBy('nombre_pais')->all(); $listData = []; foreach ($models as $model) { if (intval($model->id)) { $listData[$model->id] = $model->nombre_pais; } } return $listData; }
/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = Paises::find(); $dataProvider = new ActiveDataProvider(['query' => $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; } $query->andFilterWhere(['id' => $this->id]); $query->andFilterWhere(['like', 'nombre_pais', $this->nombre_pais]); return $dataProvider; }
/** * @return \yii\db\ActiveQuery */ public function getIdPais() { return $this->hasOne(Paises::className(), ['id' => 'id_pais']); }
public function actionIndex() { $pais = Paises::obtenerPaisPorId(1); return $pais->nombre; }
use app\models\Paises; /* @var $this yii\web\View */ /* @var $searchModel app\models\AutoresBusqueda */ /* @var $dataProvider yii\data\ActiveDataProvider */ $this->title = 'Autores'; $this->params['breadcrumbs'][] = $this->title; ?> <div class="autores-index"> <h1><?php echo Html::encode($this->title); ?> </h1> <?php // echo $this->render('_search', ['model' => $searchModel]); ?> <p> <?php echo Html::a('Create Autores', ['create'], ['class' => 'btn btn-success']); ?> </p> <?php echo GridView::widget(['dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [['class' => 'yii\\grid\\SerialColumn'], 'id', ['attribute' => 'idpais', 'filter' => ArrayHelper::map(Paises::find()->asArray()->all(), 'id', 'nombre'), 'label' => 'País', 'content' => function ($model, $key, $index, $column) { return Html::a($model->idpais0->nombre, ['autores/por-pais', 'idPais' => $model->idpais0->id], ['data-pjax' => 0]); }], 'nombre', 'apellidos', ['class' => 'yii\\grid\\ActionColumn']]]); ?> </div>
public function getPais() { return Paises::findOne(['id' => $this->id_pais])->nombre_pais; }
public function getRegister() { $countries = Paises::all(); return view('site.register', array('countries' => $countries)); }
/** * Finds the Paises model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return Paises the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = Paises::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }
?> <?php echo $form->field($model, 'ciudad')->textInput(['maxlength' => true]); ?> <?php echo $form->field($model, 'id_provincia')->dropdownList(Provincias::findAllForDropDownList(), ['prompt' => '--- Otras ---']); ?> <?php echo $form->field($model, 'provincia')->textInput(['maxlength' => true]); ?> <?php echo $form->field($model, 'id_pais')->dropdownList(Paises::findAllForDropDownList(), ['prompt' => '--- Select Status ---']); ?> <?php echo $form->field($model, 'codigo_postal')->textInput(['maxlength' => true]); ?> <?php echo $form->field($model, 'numero_casa')->textInput(['maxlength' => true]); ?> <?php echo $form->field($model, 'numero_movil')->textInput(['maxlength' => true]); ?> <?php