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.
18 lines
700 B
18 lines
700 B
<?php |
|
|
|
/* @var $this yii\web\View */ |
|
/* @var $menu \core\entities\menu\Menu */ |
|
/* @var $model \core\forms\menu\MenuForm */ |
|
|
|
$this->title = Yii::t('menu', 'Update Menu: {name}', ['name' => isset($menu->translation) ? $menu->translation->name : Yii::t('menu', 'Not set')]); |
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('menu', 'Menu'), 'url' => ['index']]; |
|
$this->params['breadcrumbs'][] = ['label' => isset($menu->translation) ? $menu->translation->name : Yii::t('menu', 'Not set'), 'url' => ['index', 'id' => $menu->id]]; |
|
$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing'); |
|
?> |
|
<div class="menu-update"> |
|
|
|
<?= $this->render('_form', [ |
|
'model' => $model, |
|
]) ?> |
|
|
|
</div>
|
|
|