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 /* @var $this AccountTypesController */
3 /* @var $model AccountTypes */
4 
5 $this->breadcrumbs = array(
6  Yii::t('app', 'Accounts') => array('//account/account'),
7  Yii::t('app', 'Account Types') => array('index'),
8  $model->Type => array('view','id' => $model->Id),
9  Yii::t('app', 'Update'),
10 );
11 
12 $this->menu = array(
13  array('label' => Yii::t('app', 'List AccountTypes'), 'url' => array('index')),
14  array('label' => Yii::t('app', 'Create AccountTypes'), 'url' => array('create')),
15  array('label' => Yii::t('app', 'View AccountTypes'), 'url' => array('view', 'id' => $model->Id)),
16  array('label' => Yii::t('app', 'Manage AccountTypes'), 'url' => array('admin')),
17 );
18 ?>
19 
20 <h1>Update AccountTypes <?php echo $model->Type; ?></h1>
21 
22 <?php $this->renderPartial('_form', array('model' => $model)); ?>