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 AccountUsersController */
3 /* @var $dataProvider CActiveDataProvider */
4 
5 $this->breadcrumbs = array(
6  Yii::t('app', 'Accounts') => array('//account/account'),
7  Yii::t('app', 'Account Users'),
8 );
9 
10 $this->menu = array(
11  //array('label'=>'Create AccountUsers', 'url'=>array('create')),
12  array('label' => Yii::t('app', 'Manage AccountUsers'), 'url' => array('admin')),
13 );
14 ?>
15 
16 <h1><?php echo Yii::t('app', 'Account Users') ?></h1>
17 
18 <?php
19 $this->widget('zii.widgets.CListView', array(
20  'dataProvider' => $dataProvider,
21  'itemView' => '_view',
22 )); ?>