HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
column2.php
Go to the documentation of this file.
1 <?php /* @var $this Controller */ ?>
2 <?php $this->beginContent('//layouts/main'); ?>
3 <div class="span-19">
4  <div id="content">
5  <?php echo $content; ?>
6  </div><!-- content -->
7 </div>
8 <div class="span-5 last">
9  <div id="sidebar">
10  <?php
11  $this->beginWidget('zii.widgets.CPortlet', array(
12  'title'=>'Operations',
13  ));
14  $this->widget('zii.widgets.CMenu', array(
15  'items'=>$this->menu,
16  'htmlOptions'=>array('class'=>'operations'),
17  ));
18  $this->endWidget();
19  ?>
20  </div><!-- sidebar -->
21 </div>
22 <?php $this->endContent(); ?>