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 JobsLogsController */
3 /* @var $model JobsLogs */
4 
5 $this->breadcrumbs = array(
6  'Jobs Logs' => array('index'),
7  $model->id,
8 );
9 
10 $this->menu = array(
11  array('label' => 'List JobsLogs', 'url' => array('index')),
12  array('label' => 'Update JobsLogs', 'url' => array('update', 'id' => $model->id)),
13  array('label' => 'Delete JobsLogs', 'url' => '#', 'linkOptions' => array('submit' => array('delete','id' => $model->id),'confirm' => 'Are you sure you want to delete this item?')),
14  array('label' => 'Manage JobsLogs', 'url' => array('admin')),
15 );
16 ?>
17 
18 <h1>View JobsLogs #<?php echo $model->id; ?></h1>
19 
20 <?php $this->widget('zii.widgets.CDetailView', array(
21  'data' => $model,
22  'attributes' => array(
23  'id',
24  'job_id',
25  'finish_message',
26  'create_time',
27  ),
28 )); ?>