Blame view

common/modules/rubrication/views/tax-option/update.php 944 Bytes
4253cbec   root   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  <?php

  

  use yii\helpers\Html;

  

  /* @var $this yii\web\View */

  /* @var $model common\modules\rubrication\models\TaxOption */

  

  $this->title = Yii::t('rubrication', 'Update {modelClass}: ', [

      'modelClass' => 'Tax Option',

  ]) . ' ' . $model->tax_option_id;

  $this->params['breadcrumbs'][] = ['label' => Yii::t('rubrication', 'Groups'), 'url' => ['tax-group/index']];

  $this->params['breadcrumbs'][] = ['label' => $group->name, 'url' => ['view', 'id' => $group->tax_group_id]];

  $this->params['breadcrumbs'][] = ['label' => Yii::t('rubrication', Yii::t('rubrication', 'Options of {name}', ['name' => $group->name])), 'url' => ['index', 'group' => $group->tax_group_id]];

  $this->params['breadcrumbs'][] = Yii::t('rubrication', 'Update');

  ?>

  <div class="tax-option-update">

  

      <h1><?= Html::encode($this->title) ?></h1>

  

      <?= $this->render('_form', [

          'model' => $model,

c4015198   Administrator   big commti
22
          'group' => $group

4253cbec   root   first commit
23
24
25
      ]) ?>

  

  </div>