Logo white

Administrator / auto-life

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • auto-life
  • protected
  • modules
  • admin
  • views
  • layouts
  • tree.php
  • first commit
    a1684257
    Administrator authored
    2016-03-02 23:21:21 +0200  
    Browse Code ยป
tree.php 543 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<?php
/**
 * @var NodeController $this
 */
?>
<?php $this->beginContent('/layouts/base'); ?>
<div class="container-fluid">
    <div class="row-fluid">
        <div class="span3">
            <div class="nav nav-list">
                <?php
                $this->widget('CTreeView', array(
                    'data' => $this->getSidebarTree(),
                ));
                ?>
            </div>
        </div>
        <div class="span9">
            <?php echo $content;?>
        </div>
    </div>
</div>
<?php $this->endContent(); ?>