https://github.com/getdevflow/menu-builder
Full featured navigation/menu builder plugin for Devflow CMF.
https://github.com/getdevflow/menu-builder
Last synced: about 2 months ago
JSON representation
Full featured navigation/menu builder plugin for Devflow CMF.
- Host: GitHub
- URL: https://github.com/getdevflow/menu-builder
- Owner: getdevflow
- License: gpl-2.0
- Created: 2026-05-18T05:06:23.000Z (2 months ago)
- Default Branch: 1.x
- Last Pushed: 2026-05-18T05:10:23.000Z (2 months ago)
- Last Synced: 2026-05-18T07:30:08.449Z (2 months ago)
- Language: PHP
- Size: 119 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Support: Support/NavigationRenderer.php
Awesome Lists containing this project
README
# Devflow Navigation Plugin
A full navigation/menu builder for Devflow CMF.
> __Requires__ Devflow Version: 2.x
> __Tested Up To:__ 2.0.0
> __Requires PHP:__ 8.4+
> __Stable Tag:__ 1.0.2
> __License:__ GPLv2-only
## Screenshot

## Features
- Unlimited menus: header, footer, sidebar, mobile, etc.
- Add by drag/drop, checkbox or Add button.
- Rename menu items.
- Change URL and CSS class.
- Add url attributes
- Open links in a new window.
- Remove menu items.
- Drag/drop nesting with jQuery UI Sortable.
- Database-backed storage.
- Renderer API for frontend templates.
## Composer Installation
1. Start a new shell session.
2. Navigate to the root of your install, run the following command ```composer require getdevflow/menu-builder```.
## Frontend usage
```php
use Plugin\MenuBuilder\Helper\NavMenu;
echo NavMenu::render('header-menu', [
'bootstrap' => 3,
'menu_class' => 'nav navbar-nav',
]);
```
Or inject `Plugin\MenuBuilder\Support\NavigationRenderer` and call:
```php
echo $navigationRenderer->render('header-menu');
```
## Notes
The repository assumes these frontend URL conventions:
- Pages: value from `{prefix}_page_translations.route`
- Products: `/product/{product_slug}`
- Content: `/{content_type?}/{content_slug}`