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.

29 lines
686 B

<?php
/**
* Created by Error202
* Date: 24.08.2018
*/
3 years ago
use core\forms\menu\MenuItemForm;
use yii\web\View;
use yii\widgets\ActiveForm;
/**
3 years ago
* @var $this View
* @var $form ActiveForm
* @var $model MenuItemForm
* @var $language string
*/
$postfix = $language == Yii::$app->params['defaultLanguage'] ? '' : '_' . $language;
?>
3 years ago
<div class="row mt-3">
<div class="col-md-6">
3 years ago
<?= $form->field($model, 'name' . $postfix)->textInput(['maxlength' => true, 'class' => 'form-control form-control-sm']) ?>
</div>
<div class="col-md-6">
3 years ago
<?= $form->field($model, 'title_attr' . $postfix)->textInput(['maxlength' => true, 'class' => 'form-control form-control-sm']) ?>
</div>
</div>