Skip to content

Instantly share code, notes, and snippets.

@mjordan
Last active January 3, 2016 01:29
Show Gist options
  • Save mjordan/8388943 to your computer and use it in GitHub Desktop.
Save mjordan/8388943 to your computer and use it in GitHub Desktop.
Example Drupal / Islandora theme callback
<?php
/**
* Theme callback.
* @param array $variables
*/
function theme_mymodule_my_hello($variables) {
$title = $variables['title'];
// Create markup
$output = '<p><strong>' . $title . '</strong></p>';
return $output;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment