View file vkclone-0.0.1/protected/modules/groups/views/default/recentGroups.php

File size: 513B
<?php
$this->pageHeader = $this->pageTitle = Yii::t('Groups', 'New groups');
?>

<div class="blue_block">
	<strong>← <?= CHtml::link(Yii::t('Groups', 'Back to all groups'), array('index')) ?></strong>
</div>

<?php $this->widget('zii.widgets.CListView', array(
	'dataProvider' => $groups,
	'itemView' => '../group/_group',
	'template' => '{items}'.PHP_EOL.'{pager}',
	'pager' => array('class' => 'CPager'),
	'emptyText' => CHtml::tag('div', array('class' => 'text'), Yii::t('Groups', 'No groups found')),
)) ?>