$this->title = Yii::t('app', 'Unidades Administrativas'); $this->params['breadcrumbs'][] = $this->title; ?> <div class="organizacion-uadministrativa-index"> <h1><?php echo Html::encode($this->title); ?> </h1> <?php // echo $this->render('_search', ['model' => $searchModel]); ?> <p> <?php echo Html::a(Yii::t('app', 'Registrar'), ['create'], ['class' => 'btn btn-success']); ?> </p> <?php echo GridView::widget(['dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [['class' => 'yii\\grid\\SerialColumn'], 'denominacion', ['attribute' => 'id_categoria', 'value' => function ($Categoriau) { $Ctg = BienesCategoriau::findOne($Categoriau->id_categoria); return $Ctg->denominacion; }], ['attribute' => 'id_organizacion', 'value' => function ($Organizacion) { $Codigo = OrganizacionOrganizacion::findOne($Organizacion->id_organizacion); return $Codigo->nombre; }], ['class' => 'yii\\grid\\ActionColumn']]]); ?> </div>
/** * Finds the OrganizacionOrganizacion model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return OrganizacionOrganizacion the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = OrganizacionOrganizacion::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }