dereuromark/cakephp-menu

Composable menu builder and renderer for CakePHP

Maintainers

Package info

github.com/dereuromark/cakephp-menu

Homepage

Documentation

Type:cakephp-plugin

pkg:composer/dereuromark/cakephp-menu

Statistics

Installs: 2 928

Dependents: 1

Suggesters: 0

Stars: 3

Open Issues: 1

0.1.2 2026-05-26 13:05 UTC

This package is auto-updated.

Last update: 2026-05-27 16:28:43 UTC


README

CI Coverage Status PHPStan Latest Stable Version Minimum PHP Version License Total Downloads Coding Standards

Composable menu builder and renderer for CakePHP applications.

This branch is for CakePHP 5.3+. See the version map for details.

Features:

  • nested menu trees with string and Cake-style array URLs
  • active-state matching with alternate routes, named routes, and fuzzy matching
  • helper-managed named menus and breadcrumb integration
  • extensible resolvers and renderers for app-specific rules

Installation

composer require dereuromark/cakephp-menu

Load the plugin:

bin/cake plugin load Menu

Load the helper in your AppView:

use Cake\View\View;

class AppView extends View
{
    public function initialize(): void
    {
        parent::initialize();

        $this->loadHelper('Menu.Menu');
    }
}

Quick Start

use Menu\Menu;

$menu = Menu::create(['class' => 'nav']);
$menu->addItem('Dashboard', ['controller' => 'Dashboard', 'action' => 'index']);

$account = $menu->addItem('Account', '#', [
    'attributes' => ['class' => 'nav-item'],
]);
$account->getSubMenu()->setAttributes(['class' => 'submenu']);
$account->add($menu->newItem('Profile', ['controller' => 'Users', 'action' => 'profile']));
$account->add($menu->newItem('Logout', ['controller' => 'Users', 'action' => 'logout']));

echo $this->Menu->render($menu);

Documentation

Full documentation lives at https://dereuromark.github.io/cakephp-menu/.

Demo

https://sandbox.dereuromark.de/menu-sandbox