Created
July 31, 2014 16:47
-
-
Save phpmypython/088ce5600b945d1889e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Code to register menu locations | |
| AbleCore\Menu::CreateLocation("header_menu","Header Menu"); | |
| AbleCore\Menu::CreateLocation("footer_menu","Footer Menu"); | |
| // Code to call those menus | |
| $header_menu = new AbleCore\Menu(); | |
| $header_menu->setContainer('nav'); | |
| ->setContainerClass('dropdown'); | |
| ->render(); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment