EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
column2.php
Go to the documentation of this file.
1 <?php
2 /*/////////////////////////////////////////////////////////////////////////
3 // This file is part of the
4 // _______ _ ______
5 // (_______) | | (_____ \
6 // _____ ____ _____ ___ | |__ _ _ ____) )
7 // | ___)/ ___)| ___ | /___)| _ \ | | | | / ____/
8 // | | | | | ____||___ || | | || |_| | | (_____
9 // |_| |_| |_____)(___/ |_| |_| \__ | |_______)
10 // (____/
11 // Yii theme
12 //
13 // Ported from the original Wordpress Freshy 2 theme:
14 // http://www.jide.fr/english/downloads/freshy2
15 //
16 // Licensed under the GPL, like the original theme
17 // Copyleft 2011 - Jacob 'jacmoe' Moen @ http://www.jacmoe.dk/
19 ?>
20 <?php $this->beginContent('//layouts/main'); ?>
21 <div id="page" class="sidebar_right">
22  <div class="container">
23  <div id="frame">
24  <div id="content">
25  <?php if(isset($this->breadcrumbs)):?>
26  <?php $this->widget('zii.widgets.CBreadcrumbs', array(
27  'links'=>$this->breadcrumbs,
28  )); ?><!-- breadcrumbs -->
29  <br/>
30  <?php endif?>
31  <?php echo $content; ?>
32  </div><!-- content -->
33  <div id="sidebar" class="sidebar">
34  <div>
35  <div class="widget">
36  <h2>Operations</h2>
37  <?php
38  $this->beginWidget('zii.widgets.CPortlet', array(
39  'title'=>'Operations',
40  ));
41  $this->widget('zii.widgets.CMenu', array(
42  'items'=>$this->menu,
43  'htmlOptions'=>array('class'=>'operations'),
44  ));
45  $this->endWidget();
46  ?>
47  </div>
48  </div>
49  </div><!-- sidebar -->
50  </div><!-- frame -->
51  </div><!-- container -->
52 </div><!-- page -->
53 <?php $this->endContent(); ?>