Blame view

backend/views/settings/_main_tab.php 717 Bytes
9af79e71   Yarik   Sitemap and slugb...
1
2
3
4
5
6
7
8
9
10
11
12
  <?php
      use common\models\Settings;
      use yii\bootstrap\ActiveForm;
      use yii\web\View;
      
      /**
       * @var View       $this
       * @var Settings   $model
       * @var ActiveForm $form
       */
      echo $form->field($model, 'name')
                ->textInput();
4cad42b8   Yarik   v0.0.2-stable
13
14
15
16
17
18
19
20
      //    echo $form->field($model, 'logo')
      //              ->widget(
      //                  \noam148\imagemanager\components\ImageManagerInputWidget::className(),
      //                  [
      //                      'showPreview'                  => true,
      //                      'showDeletePickedImageConfirm' => false,
      //                  ]
      //              );
9af79e71   Yarik   Sitemap and slugb...
21
22
      echo $form->field($model, 'about')
                ->textarea();