function bricks_module_implements_alter in Bricks 7.5
Same name and namespace in other branches
- 7.4 bricks.module \bricks_module_implements_alter()
Implements hook_module_implements_alter().
File
- ./
bricks.module, line 17
Code
function bricks_module_implements_alter(&$implementations, $hook) {
if ($hook == 'field_widget_form_alter') {
$group = $implementations['bricks'];
unset($implementations['bricks']);
$implementations['bricks'] = $group;
}
}