Blame view

backend/modules/seo/views/robots/_form.php 410 Bytes
d1f8bd40   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
  <?php
  use yii\bootstrap\ActiveForm;
  use yii\bootstrap\Html;
  
  $form = ActiveForm::begin(); ?>
  
  <?= Html::textarea('robots', $robotsTxt, ['class' => 'form-control', 'rows' => 10]); ?>
      <br>
      <div class="text-right submit-panel-buttons"><input type="hidden" name="save_and_exit">
          <button type="submit" class="btn btn-info"><?= Yii::t('app', 'Save') ?></button>
      </div>
  
  <?php ActiveForm::end();