Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

24 строки
622 B

  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model common\models\BaseUserAuth */
  5. /* @var $roles array BaseRole */
  6. $this->title = 'Update Base User Auth: ' . $model->id;
  7. $this->params['breadcrumbs'][] = ['label' => 'Base User Auths', 'url' => ['index']];
  8. $this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
  9. $this->params['breadcrumbs'][] = 'Update';
  10. ?>
  11. <div class="iframe_box base-user-auth-update">
  12. <h1><?= Html::encode($this->title) ?></h1>
  13. <?= $this->render('_form', [
  14. 'model' => $model,
  15. 'roles' => $roles
  16. ]) ?>
  17. </div>