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.
 
 
 
dimti 55db8ceb94 - turn off default wms menu styles 3 years ago
assets/css + support icon base64 & icon base64 minimized 4 years ago
classes * move sideMenuItem group, icon_bas64, icon_base64_minimized to attributes property & support them october >1.0.467 4 years ago
controllers Initial 4 years ago
helpers + minimized menu 4 years ago
lang Initial 4 years ago
partials/menu * move sideMenuItem group, icon_bas64, icon_base64_minimized to attributes property & support them october >1.0.467 4 years ago
updates Initial 4 years ago
.gitignore Initial 4 years ago
Plugin.php - turn off default wms menu styles 3 years ago
README-RU.md Initial 4 years ago
README.md Initial 4 years ago
routes.php Initial 4 years ago

README.md

Menu plugin

Combines menu items from different plugins

To add menu items add to classPlugin

public function addToMainNavigation()
{
    return [
        '{tab_name}' => [
            '{name}' => [
                'label'       => {label},
                'url'         => {url},
                'permissions' => [{permission}, ...],
                'icon'        => {icon},
                'order'       => {order},
                //'first'       => true,
                'subMenu'     => [
                    '{tab_name}' => [
                        '{name}' => [
                            'label'       => {label},
                            'url'         => {url},
                            'permissions' => [{permission}, ...],
                            'icon'        => {icon},
                            'order'       => {order},
                        ],
                        ...
                    ],
                ...
            ],
            ...
        ],
        ...
    ];
}

Default tab name is {default_name}

For change default tab name, in Plugin.php file, declare the constant DEFAULT_MENU_NAME

If the first element is specified, it will immediately open when you click on the menu. If not, the menu or submenu page will be opened.