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.
19 lines
562 B
19 lines
562 B
6 years ago
|
<?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' => $menu->name]);
|
||
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('menu', 'Menu'), 'url' => ['index']];
|
||
|
$this->params['breadcrumbs'][] = ['label' => $menu->name, 'url' => ['index', 'id' => $menu->id]];
|
||
|
$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing');
|
||
|
?>
|
||
|
<div class="menu-update">
|
||
|
|
||
|
<?= $this->render('_form', [
|
||
|
'model' => $model,
|
||
|
]) ?>
|
||
|
|
||
|
</div>
|