Blame view

protected/modules/admin/views/layouts/crud_layout.php 925 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
24
25
26
27
28
29
30
31
32
33
  <?php
  /**
   * @var EmployeeController $this
   */
  ?>
  <?php $this->beginContent('/layouts/base'); ?>
  <div class="container-fluid">
      <div class="row-fluid">
          <div class="span2">
              <div class="">
                  <?php
                  $items = array(
                      array(
                          'label' => 'Действия',
                          'items' => $this->actionsMenu
                      )
                  );
                  if (isset($this->pagesMenu))
                      $items[] = array(
                          'label' => 'Страницы',
                          'items' => $this->pagesMenu
                      );
                  $this->widget('BSideMenu', array(
                      'items' => $items,
                  ));?>
              </div>
          </div>
          <div class="span10">
              <?php echo $content;?>
          </div>
      </div>
  </div>
  <?php $this->endContent(); ?>