HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
sites.php
Go to the documentation of this file.
1 <?php $this->breadcrumbs = array(
2  'Rights' => Rights::getBaseUrl(),
3  Rights::t('core', 'Assignments'),
4 ); ?>
5 
6 <div id="assignments">
7 
8  <h2><?php echo Rights::t('core', 'Assignments'); ?></h2>
9 
10  <p>
11  <?php echo Rights::t('core', 'Here you can view which permissions has been assigned to each user.'); ?>
12  </p>
13 
14  <?php $this->widget('zii.widgets.grid.CGridView', array(
15  'dataProvider' => $dataProvider,
16  'columns' => array(
17  /*array(
18  'name' => 'username',
19  'type'=>'raw',
20  'value' => 'CHtml::link(CHtml::encode($data->username),array("user/view","id"=>$data->id))',
21  ),*/
22  'Site_Id',
23  'User_Id',
24  'Auth_Item_Name',
25  ),
26  )); ?>
27 
28 </div>