You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.3 KiB
42 lines
1.3 KiB
<?php |
|
|
|
use mihaildev\ckeditor\CKEditor; |
|
use yii\helpers\Html; |
|
use yii\widgets\ActiveForm; |
|
|
|
/* @var $this yii\web\View */ |
|
/* @var $model core\forms\PageForm */ |
|
/* @var $form yii\widgets\ActiveForm */ |
|
?> |
|
|
|
<div class="page-form"> |
|
|
|
<?php $form = ActiveForm::begin(); ?> |
|
|
|
<div class="box box-default"> |
|
<div class="box-header with-border"><?= Yii::t('page', 'Common') ?></div> |
|
<div class="box-body"> |
|
<?= $form->field($model, 'parentId')->dropDownList($model->parentsList()) ?> |
|
<?= $form->field($model, 'title')->textInput(['maxlength' => true]) ?> |
|
<?= $form->field($model, 'slug')->textInput(['maxlength' => true]) ?> |
|
<?= $form->field($model, 'content')->widget(CKEditor::className()) ?> |
|
|
|
</div> |
|
</div> |
|
|
|
<div class="box box-default"> |
|
<div class="box-header with-border"><?= Yii::t('page', 'SEO') ?></div> |
|
<div class="box-body"> |
|
<?= $form->field($model->meta, 'title')->textInput() ?> |
|
<?= $form->field($model->meta, 'description')->textarea(['rows' => 2]) ?> |
|
<?= $form->field($model->meta, 'keywords')->textInput() ?> |
|
</div> |
|
</div> |
|
|
|
<div class="form-group"> |
|
<?= Html::submitButton(Yii::t('buttons', 'Save'), ['class' => 'btn btn-success']) ?> |
|
</div> |
|
|
|
<?php ActiveForm::end(); ?> |
|
|
|
</div>
|
|
|