- π¨π³China jungle Chongqing, China
Let's allow contrib modules to implement hook_examples_toolbar_routes_alter() to add a menu item to the Examples toolbar.
function hook_examples_toolbar_routes_alter(&$routes) { // Add a menu item for `foo_example` module to the `Examples` toolbar. // keyed by the module name, and the value is the route name. $routes['foo_example'] = 'foo_example.description'; }
See the example
- First commit to issue fork.