HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
view.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,
8 );
9 
10 $this->menu = array(
11  array('label' => 'List Jobs', 'url' => array('index')),
12  array('label' => 'Update Jobs', 'url' => array('update', 'id' => $model->id)),
13  array('label' => 'Delete Jobs', 'url' => '#', 'linkOptions' => array('submit' => array('delete','id' => $model->id),'confirm' => 'Are you sure you want to delete this item?')),
14  array('label' => 'Manage Jobs', 'url' => array('admin')),
15 );
16 ?>
17 
18 <h1>View Jobs #<?php echo $model->id; ?></h1>
19 
20 <?php $this->widget('zii.widgets.CDetailView', array(
21  'data' => $model,
22  'attributes' => array(
23  'id',
24  'job_class',
25  'job_data',
26  'crontab',
27  'job_status_id',
28  'planned_time',
29  'start_time',
30  'finish_time',
31  'create_time',
32  'update_time',
33  ),
34 )); ?>