EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
column2.php
Go to the documentation of this file.
1 <?php $this->beginContent('//layouts/main'); ?>
2 <div class="container">
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'=>'<span class="icon icon-sitemap_color">Operations</span>',
13  ));
14  $this->widget('zii.widgets.CMenu', array(
15  'items'=>$this->menu,
16  'htmlOptions'=>array('class'=>'operations'),
17  ));
18  $this->endWidget();
19  ?>
20 
21  <?php
22  $this->beginWidget('zii.widgets.CPortlet', array(
23  'title'=>'<span class="icon icon-user">Account Details</span>',
24  ));
25  ?>
26  Domains Used: 45/100
27  <?php
28  $this->widget('zii.widgets.jui.CJuiProgressBar', array(
29  'value'=>45,
30  'htmlOptions'=>array(
31  'style'=>'height:10px;',
32  'class'=>'shadowprogressbar'
33  ),
34  ));
35  ?>
36  <br />
37  Space Used: 95%
38  <?php
39  $this->widget('zii.widgets.jui.CJuiProgressBar', array(
40  'value'=>95,
41  'htmlOptions'=>array(
42  'style'=>'height:10px;',
43  'class'=>'shadowprogressbar'
44  ),
45  ));
46  ?>
47  <br />
48  Bandwidth Used: 10%
49  <?php
50  $this->widget('zii.widgets.jui.CJuiProgressBar', array(
51  'value'=>10,
52  'htmlOptions'=>array(
53  'style'=>'height:10px;',
54  'class'=>'shadowprogressbar'
55  ),
56  ));
57  ?>
58  <br />
59  Conversion rate: 25%
60  <?php
61  $this->widget('zii.widgets.jui.CJuiProgressBar', array(
62  'value'=>25,
63  'htmlOptions'=>array(
64  'style'=>'height:10px;',
65  'class'=>'shadowprogressbar'
66  ),
67  ));
68  ?>
69  <?php
70  $this->endWidget();
71  ?>
72 
73  </div><!-- sidebar -->
74  </div>
75 </div>
76 <?php $this->endContent(); ?>