Blame view

frontend/views/user-info/update.php 655 Bytes
1face72c   Yarik   test
1
2
3
4
5
  <?php
  
  use yii\helpers\Html;
  
  /* @var $this yii\web\View */
cdb04594   Yarik   test
6
  /* @var $model common\models\UserInfo */
1face72c   Yarik   test
7
8
  
  $this->title = Yii::t('app', 'Update {modelClass}: ', [
cdb04594   Yarik   test
9
10
11
12
      'modelClass' => 'User Info',
  ]) . ' ' . $model->user_info_id;
  $this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'User Infos'), 'url' => ['index']];
  $this->params['breadcrumbs'][] = ['label' => $model->user_info_id, 'url' => ['view', 'id' => $model->user_info_id]];
1face72c   Yarik   test
13
14
  $this->params['breadcrumbs'][] = Yii::t('app', 'Update');
  ?>
cdb04594   Yarik   test
15
  <div class="user-info-update">
1face72c   Yarik   test
16
17
18
19
20
21
22
23
  
      <h1><?= Html::encode($this->title) ?></h1>
  
      <?= $this->render('_form', [
          'model' => $model,
      ]) ?>
  
  </div>