Skip to content

Instantly share code, notes, and snippets.

@aschiwi
aschiwi / gist:5690843
Created June 1, 2013 16:00
Print your menus like this for Drupal 8 phptemplate themes.
<?php print render($main_menu); ?>
@aschiwi
aschiwi / gist:5690836
Created June 1, 2013 15:59
Old way to print menus in Drupal 7 page.tpl.php.
<?php print theme('links__system_main_menu', array('links' => $main_menu, 'attributes' => array('id' => 'main-menu', 'class' => array('links', 'clearfix')))); ?>
@aschiwi
aschiwi / gist:5690827
Created June 1, 2013 15:56
Use this line in your Drupal 8's phptemplate theme to tell Drupal you're using the phptemplate engine.
engine: phptemplate