EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
view.php
Go to the documentation of this file.
1 <?php
2 /* @var $this UsersController */
3 /* @var $model Users */
4 
5 $this->breadcrumbs=array(
6  'Users'=>array('index'),
7  $model->userid,
8 );
9 
10 $this->menu=array(
11  array('label'=>'List Users', 'url'=>array('index')),
12  array('label'=>'Create Users', 'url'=>array('create')),
13  array('label'=>'Update Users', 'url'=>array('update', 'id'=>$model->userid)),
14  array('label'=>'Delete Users', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->userid),'confirm'=>'Are you sure you want to delete this item?')),
15  array('label'=>'Manage Users', 'url'=>array('admin')),
16 );
17 ?>
18 
19 <h1>View Users #<?php echo $model->userid; ?></h1>
20 
21 <?php $this->widget('zii.widgets.CDetailView', array(
22  'data'=>$model,
23  'attributes'=>array(
24  'userid',
25  'username',
26  'firstname',
27  'lastname',
28  'email',
29  'password',
30  ),
31 )); ?>