Skip to content

Instantly share code, notes, and snippets.

View fede-green's full-sized avatar

fede-green

  • Trimble Solutions
  • Helsinki
View GitHub Profile
@fede-green
fede-green / module.module
Last active October 9, 2017 11:16
Module implementing custom template suggestions altering an already existing hook.
/**
* Implements hook_theme_suggestions_HOOK_alter().
*/
function MYMODULE_theme_suggestions_HOOK_alter(array &$suggestions, array $variables) {
array_unshift($suggestions, 'ADD_MY_MODULE_SUGGESTION');
}
/**
* Implements hook_theme_registry_alter().
*/
function MYMODULE_theme_registry_alter(&$theme_registry) {