column2.php 987 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
<?php /* @var $this Controller */ ?>
<?php $this->beginContent('//layouts/main'); ?>
<table>
    <tr>
        <td>
            <div class="content">
                    <div id="content">
                            <?php echo $content; ?>
                    </div><!-- content -->
            </div>
        </td>
        <td>
            <div class="span-5 last">
                <div id="sidebar">
                <?php
                        $this->beginWidget('zii.widgets.CPortlet', array(
                                'title'=>'Operaciones',
                        ));
                        $this->widget('zii.widgets.CMenu', array(
                                'items'=>$this->menu,
                                'htmlOptions'=>array('class'=>'operations'),
                        ));
                        $this->endWidget();
                ?>
                </div><!-- sidebar -->
            </div>
        </td>
    </tr>
</table>
<?php $this->endContent();