Download the PHP package lotos2512/menu-and-breadcrumbs-generator without Composer
On this page you can find all versions of the php package lotos2512/menu-and-breadcrumbs-generator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download lotos2512/menu-and-breadcrumbs-generator
More information about lotos2512/menu-and-breadcrumbs-generator
Files in lotos2512/menu-and-breadcrumbs-generator
Package menu-and-breadcrumbs-generator
Short Description menu and breadcrumbs generator
License MIT
Homepage https://github.com/lotos2512/menu-and-breadcrumbs-generator
Informations about the package menu-and-breadcrumbs-generator
Menu and breadcrumbs generator
Generate HTML menu and breadcrumbs from php array
Installation
The preferred way to install this extension is through composer.
Either run
Example
https://github.com/lotos2512/menu-and-breadcrumbs-generator/blob/master/example/index.php
Base usage for menu
Definitions keys:
name - Name of node, accept sting or callback (required).
url - Url of node.Accept string value.
permission - Use for permission of node.Accept bool value or callback.
params - array with string values, what will be add param form $_GET to url if the node url is current.
namePostFix - string value, what will get value from $_GET and add to name of the node if url is current.
children - array with nodes.
visible - string value Node::VISIBLE_TYPE_CURRENT_PAGE, use to show the node if url is current.
Base usage for breadcrumbs
use PrettyUrlBreadcrumbsStrategy to create $breadcrumbs for the node if $tree is true. For example you want find breadcrumbs for url - '/cryptography/certificates/view/?id=1' your tree must be like this
Custom node HTML for menu