示例#1
0
文件: index.php 项目: rapbore/comar
<?php

$this->breadcrumbs = array(
	Local::label(2),
	Yii::t('app', 'Index'),
);

$this->menu = array(
	array('label'=>Yii::t('app', 'Create') . ' ' . Local::label(), 'url' => array('create')),
	array('label'=>Yii::t('app', 'Manage') . ' ' . Local::label(2), 'url' => array('admin')),
);
?>

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

<?php $this->widget('zii.widgets.CListView', array(
	'dataProvider'=>$dataProvider,
	'itemView'=>'_view',
)); 
示例#2
0
文件: index.php 项目: rapbore/rch2
<?php

$this->breadcrumbs = array(Local::label(2), Yii::t('app', 'Index'));
$this->menu = array(array('label' => Yii::t('app', 'Create') . ' ' . Local::label(), 'url' => array('create')), array('label' => Yii::t('app', 'Manage') . ' ' . Local::label(2), 'url' => array('admin')));
?>

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

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