Blame view

protected/modules/admin/gii/bcrud/templates/default/create.php 531 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
  <?php
  /**
   * The following variables are available in this template:
   * - $this: the CrudCode object
   */
  ?>
  <?php
  echo "<?php\n";
  $label=$this->pluralize($this->class2name($this->modelClass));
  ?>
  
  $this->actionsMenu = array(
      array('label' => 'Управление <?php echo $this->modelClass; ?>', 'url' => array('admin'), 'icon'=>'icon-list', 'active'=>'/'.$this->id.'\/admin/'),
  );
  ?>
  
  <h1>Добавить <?php echo $label?></h1>
  <br/>
  <?php
  echo "<?php echo \$this->renderPartial('_form', array('model' => \$model)); ?>";