Skip to content

Instantly share code, notes, and snippets.

@phpmypython
Created July 31, 2014 16:47
Show Gist options
  • Select an option

  • Save phpmypython/088ce5600b945d1889e1 to your computer and use it in GitHub Desktop.

Select an option

Save phpmypython/088ce5600b945d1889e1 to your computer and use it in GitHub Desktop.
<?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