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 JobsController */
3 /* @var $model Jobs */
4 
5 $this->breadcrumbs = array(
6  'Jobs' => array('index'),
7  $model->id => array('view','id' => $model->id),
8  'Update',
9 );
10 
11 $this->menu = array(
12  array('label' => 'List Jobs', 'url' => array('index')),
13  array('label' => 'View Jobs', 'url' => array('view', 'id' => $model->id)),
14  array('label' => 'Manage Jobs', 'url' => array('admin')),
15 );
16 ?>
17 
18 <h1>Update Jobs <?php echo $model->id; ?></h1>
19 
20 <?php $this->renderPartial('_form', array('model' => $model)); ?>