form-comment-answer.php 2.6 KB
<?php
    /**
     * @var \common\modules\comment\models\Comment     $model
     * @var \common\models\User                        $user
     * @var \yii\data\ActiveDataProvider               $dataProvider
     * @var null|\common\modules\comment\models\Rating $rating
     */
    use yii\widgets\ActiveForm;
    use yii\helpers\Html;

?>
<?php
    if(!empty( $dataProvider )) {
        ?>
        <div class="new-portf-comm-count">Вопросов: <?= $dataProvider->totalCount ?></div>
        <?php
    }
?>

<div class="new-portf-add-comm style">

    <?php
        $form = ActiveForm::begin();
        if(!$model->isNewRecord) {
            echo $form->field($model, 'comment_id')
                      ->hiddenInput()
                      ->label(false)
                      ->error(false);
        }
        if(!empty($model->comment_pid)) {
            echo $form->field($model, 'comment_pid')
                      ->hiddenInput()
                      ->label(false)
                      ->error(false);
        }
        if($model->scenario == $model::SCENARIO_GUEST) {
            echo $form->field($model, 'user_name', [
                'options'      => [
                    'class' => 'input-blocks-comm',
                ],
                'inputOptions' => [
                    'class' => 'custom-input-4',
                ],
            ])
                      ->textInput();
            echo $form->field($model, 'user_email', [
                'options'      => [
                    'class' => 'input-blocks-comm',
                ],
                'inputOptions' => [
                    'class' => 'custom-input-4',
                ],
            ])
                      ->textInput();
        }

    ?>
    <div class="artbox_comment_reply_block artbox_comment_reply_answer_block"></div>
    <?php

        echo $form->field($model, 'text', [
            'options'      => [
                'class' => 'input-blocks-comm area-comm',
            ],
            'inputOptions' => [
                'class' => 'custom-area-4',
            ],
        ])
                  ->label($model->isNewRecord?'Вопрос':'Ответ', ['class' => 'artbox_comment_answer_label'])
                  ->textarea();
    ?>
    <div class="input-blocks-comm-button style">
        <?php
            if($model->isNewRecord) {
                echo Html::submitButton('Добавить комментарий');
            } else {
                echo Html::submitButton('Обновить комментарий', [ 'class' => 'artbox_comment_update_answer_submit' ]);
            }
        ?>
    </div>
    <?php
        $form->end();
    ?>
</div>