EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
update.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=>array('view','id'=>$model->userid),
8  'Update',
9 );
10 
11 $this->menu=array(
12  array('label'=>'List Users', 'url'=>array('index')),
13  array('label'=>'Create Users', 'url'=>array('create')),
14  array('label'=>'View Users', 'url'=>array('view', 'id'=>$model->userid)),
15  array('label'=>'Manage Users', 'url'=>array('admin')),
16 );
17 ?>
18 
19 <h1>Update Users <?php echo $model->userid; ?></h1>
20 
21 <?php echo $this->renderPartial('_form', array('model'=>$model)); ?>