EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
index.php
Go to the documentation of this file.
1 <?php
2 /* @var $this UsersController */
3 /* @var $dataProvider CActiveDataProvider */
4 
5 $this->breadcrumbs=array(
6  'Users',
7 );
8 
9 $this->menu=array(
10  array('label'=>'Create Users', 'url'=>array('create')),
11  array('label'=>'Manage Users', 'url'=>array('admin')),
12 );
13 ?>
14 
15 <h1>Users</h1>
16 
17 <?php $this->widget('zii.widgets.CListView', array(
18  'dataProvider'=>$dataProvider,
19  'itemView'=>'_view',
20 )); ?>