Blame view

protected/modules/admin/views/serviceCenter/admin.php 753 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
  
  $this->actionsMenu = array(
      array('label' => 'Упорядочить сервис центры', 'url' => array('order'), 'icon' => 'icon-resize-vertical', 'active' => '/' . $this->id . '\/order/'),
      array('label' => 'Добавить сервис центр', 'url' => array('create'), 'icon' => 'icon-plus', 'active' => '/' . $this->id . '\/create/'),
  );
  
  ?>
  
  <h1>Управление сервис центрами</h1>
  <br/>
  <?php $this->widget('BGridView', array(
      'id' => 'service-center-grid',
      'dataProvider' => $model->search(),
      'filter' => $model,
      'columns' => array(
          'i18n.name',
          array(
              'class' => 'CButtonColumn',
              'template' => '{update} {delete}',
          ),
      ),
  )); ?>