Skip to content

Instantly share code, notes, and snippets.

@mjordan
Created January 12, 2014 19:07
Show Gist options
  • Save mjordan/8388973 to your computer and use it in GitHub Desktop.
Save mjordan/8388973 to your computer and use it in GitHub Desktop.
Example hook_theme() with template
<?php
/**
* Implements hook_theme().
* Registers all theme hooks defined by this module.
*/
function mymodule_theme() {
return array(
'mymodule_my_hello' => array(
'variables' => array(
'title' => NULL,
'template' => 'mymodule-hello',
),
),
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment