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 $this->breadcrumbs = array(
3  UserModule::t("Users"),
4 );
6  $this->layout = '//layouts/column2';
7  $this->menu = array(
8  array('label' => UserModule::t('Manage Profile Field'), 'url' => array('profileField/admin')),
9  );
10 }
11 ?>
12 
13 <h1><?php echo UserModule::t("List User"); ?></h1>
14 
15 <?php $this->widget('zii.widgets.grid.CGridView', array(
16  'dataProvider' => $dataProvider,
17  'columns' => array(
18  array(
19  'name' => 'username',
20  'type' => 'raw',
21  'value' => 'CHtml::link(CHtml::encode($data->username),array("user/view","id"=>$data->id))',
22  ),
23  'create_at',
24  'lastvisit_at',
25  ),
26 ));