function fences_module_implements_alter in Fences 7.2
Same name and namespace in other branches
- 7 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;
}
}