index.php 525 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<?php

$this->breadcrumbs = array(
	Mzgtdepartamentos::label(2),
	//Yii::t('app', 'Departamentos'),
);

$this->menu = array(
	array('label'=>Yii::t('app', 'Registrar') . ' ' . Mzgtdepartamentos::label(), 'url' => array('create')),
	array('label'=>Yii::t('app', 'Administrar') . ' ' . Mzgtdepartamentos::label(2), 'url' => array('admin')),
);
?>

<h1><?php echo GxHtml::encode(Mzgtdepartamentos::label(2)); ?></h1>

<?php $this->widget('zii.widgets.CListView', array(
	'dataProvider'=>$dataProvider,
	'itemView'=>'_view',
));