HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
update.php
Go to the documentation of this file.
1 <?php
2 $this->breadcrumbs = array(
3  (UserModule::t('Users')) => array('admin'),
4  $model->username => array('view','id' => $model->id),
5  (UserModule::t('Update')),
6 );
7 $this->menu = array(
8  array('label' => UserModule::t('Create User'), 'url' => array('create')),
9  array('label' => UserModule::t('View User'), 'url' => array('view','id' => $model->id)),
10  array('label' => UserModule::t('Manage Profile Field'), 'url' => array('profileField/admin')),
11 );
12 ?>
13 
14 <h1><?php echo UserModule::t('Update User')." ".$model->id; ?></h1>
15 
16 <?php
17  echo $this->renderPartial('_form', array('model' => $model, 'profile' => $profile));
18 ?>