Blame view

common/modules/comment/views/manage/update.php 602 Bytes
d8c1a2e0   Yarik   Big commit artbox
1
2
3
4
5
6
7
8
9
  <?php
      use common\modules\comment\models\CommentModel;
      use yii\helpers\Html;
      use yii\widgets\ActiveForm;
      
      /**
       * @var CommentModel $model
       */
      $statuses = [
5c2eb7c8   Yarik   Big commit almost...
10
11
          $model::STATUS_ACTIVE  => 'Активный',
          $model::STATUS_HIDDEN  => 'Скрытый',
d8c1a2e0   Yarik   Big commit artbox
12
13
14
          $model::STATUS_DELETED => 'Удаленный',
      ];
      $form = ActiveForm::begin();
5c2eb7c8   Yarik   Big commit almost...
15
16
17
18
      echo $form->field($model, 'text')
                ->textarea();
      echo $form->field($model, 'status')
                ->dropDownList($statuses);
d8c1a2e0   Yarik   Big commit artbox
19
20
      echo Html::submitButton('Обновить');
      $form->end();