Gentics Portal.Node PHP API
 All Classes Namespaces Functions Variables Pages
update.php
1 <?php
2 $this->breadcrumbs = array(
3  UserModule::t('Profile Fields') => array('admin'),
4  $model->title => array('view', 'id' => $model->id),
5  UserModule::t('Update'),
6 );
7 ?>
8 
9 <h1><?php echo UserModule::t('Update ProfileField') . " '{$model->varname}'"; ?></h1>
10 
11 <?php echo $this->renderPartial('_menu', array(
12  'list' => array(
13  CHtml::link(UserModule::t('Create Profile Field'), array('create')),
14  CHtml::link(UserModule::t('View Profile Field'), array('view', 'id' => $model->id)),
15  ),
16 ));
17 ?>
18 
19 <?php echo $this->renderPartial('_form', array('model' => $model)); ?>