public function actionAdmin() { $model = new HistorialVehiculos('search'); $model->unsetAttributes(); if (isset($_GET['HistorialVehiculos'])) { $model->setAttributes($_GET['HistorialVehiculos']); } $this->render('admin', array('model' => $model)); }
<?php $this->breadcrumbs = array(HistorialVehiculos::label(2), Yii::t('app', 'Index')); $this->menu = array(array('label' => Yii::t('app', 'Agregar') . ' ' . HistorialVehiculos::label(), 'url' => array('create')), array('label' => Yii::t('app', 'Administrar') . ' ' . HistorialVehiculos::label(2), 'url' => array('admin'))); ?> <h1><?php echo GxHtml::encode(HistorialVehiculos::label(2)); ?> </h1> <?php $this->widget('zii.widgets.CListView', array('dataProvider' => $dataProvider, 'emptyText' => 'No hay resultados', 'summaryText' => 'Mostrando del {start} al {end} de {count} resultado(s).', 'pager' => array('header' => '', 'prevPageLabel' => 'Anterior', 'nextPageLabel' => 'Siguiente'), 'itemView' => '_view'));