You are here

function fences_module_implements_alter in Fences 7

Same name and namespace in other branches
  1. 7.2 fences.module \fences_module_implements_alter()

Implements hook_module_implements_alter().

File

./fences.module, line 40
Fences is a module providing configurable field wrappers.

Code

function fences_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'theme') {

    // Make fences' hook_theme() run last.
    $group = $implementations['fences'];
    unset($implementations['fences']);
    $implementations['fences'] = $group;
  }
}