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.
30 lines
554 B
30 lines
554 B
6 years ago
|
<?php
|
||
|
/**
|
||
|
* Created by Error202
|
||
|
* Date: 10.07.2018
|
||
|
*/
|
||
|
|
||
|
namespace common\modules\blog\widgets;
|
||
|
|
||
|
|
||
|
use core\forms\menu\MenuItemForm;
|
||
|
use yii\base\Widget;
|
||
|
|
||
|
class MenuItemCreatorWidget extends Widget
|
||
|
{
|
||
|
public $menu_id;
|
||
|
|
||
|
public function run()
|
||
|
{
|
||
|
$form = new MenuItemForm();
|
||
|
$form->module = \Yii::t('blog', 'Blog');
|
||
|
$form->name = \Yii::t('blog', 'Blog');
|
||
|
$form->title_attr = \Yii::t('blog', 'Blog');
|
||
|
$form->menu_id = $this->menu_id;
|
||
|
$form->url = '/blog/post/index';
|
||
|
|
||
|
return $this->render('menu-item/creator', [
|
||
|
'model' => $form,
|
||
|
]);
|
||
|
}
|
||
|
}
|