Blame view

protected/modules/admin/views/layouts/tree.php 543 Bytes
a1684257   Administrator   first commit
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(); ?>