You are here

function bricks_module_implements_alter in Bricks​ 7.4

Same name and namespace in other branches
  1. 7.5 bricks.module \bricks_module_implements_alter()

Implements hook_module_implements_alter().

File

./bricks.module, line 22

Code

function bricks_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'field_widget_form_alter') {
    $group = $implementations['bricks'];
    unset($implementations['bricks']);
    $implementations['bricks'] = $group;
  }
}