Blame view

protected/modules/admin/views/layouts/node.php 271 Bytes
a1684257   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  <?php
  /**
   * @var NodeController $this
   */
  
  $this->beginContent('/layouts/tree');
  $this->widget('zii.widgets.CMenu', array(
      'items' => $this->getNodeMenu(),
      'htmlOptions' => array(
          'class' => 'nav nav-tabs',
      ),
  ));
  echo $content;
  $this->endContent();