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 $data JobsLogs */
4 ?>
5 
6 <div class="view">
7 
8  <b><?php echo CHtml::encode($data->getAttributeLabel('id')); ?>:</b>
9  <?php echo CHtml::link(CHtml::encode($data->id), array('view', 'id' => $data->id)); ?>
10  <br />
11 
12  <b><?php echo CHtml::encode($data->getAttributeLabel('finish_message')); ?>:</b>
13  <?php echo CHtml::encode($data->finish_message); ?>
14  <br />
15 
16  <b><?php echo CHtml::encode($data->getAttributeLabel('create_time')); ?>:</b>
17  <?php echo CHtml::encode($data->create_time); ?>
18  <br />
19 
20  <b><?php echo CHtml::encode($data->getAttributeLabel('job_id')); ?>:</b>
21  <?php echo CHtml::encode($data->job_id); ?>
22  <br />
23 
24 
25 </div>