HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
index.php
Go to the documentation of this file.
1 <?php
2 /* @var $this AccountTypesLimitsController */
3 /* @var $dataProvider CActiveDataProvider */
4 
5 $this->breadcrumbs = array(
6  Yii::t('app', 'Accounts') => array('//account/account'),
7  Yii::t('app', 'Account Types Limits'),
8 );
9 
10 $this->menu = array(
11  array('label' => Yii::t('app', 'Create AccountTypesLimits'), 'url' => array('create')),
12  array('label' => Yii::t('app', 'Manage AccountTypesLimits'), 'url' => array('admin')),
13 );
14 ?>
15 
16 <h1><?php echo Yii::t('app', 'Account Types Limits') ?></h1>
17 
18 <?php $this->widget('zii.widgets.CListView', array(
19  'dataProvider' => $dataProvider,
20  'itemView' => '_view',
21 )); ?>