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="row">
4  <div class="span9">
5  <div id="content">
6  <?php echo $content; ?>
7  </div><!-- content -->
8  </div>
9  <div class="span3">
10  <div id="sidebar">
11  <?php
12  $this->beginWidget('zii.widgets.CPortlet', array(
13  'title'=>'Operations',
14  ));
15  $this->widget('bootstrap.widgets.TbMenu', array(
16  'items'=>$this->menu,
17  'htmlOptions'=>array('class'=>'operations'),
18  ));
19  $this->endWidget();
20  ?>
21  </div><!-- sidebar -->
22  </div>
23 </div>
24 <?php $this->endContent(); ?>