You are here

function acquia_contenthub_module_implements_alter in Acquia Content Hub 8

Implements hook_module_implements_alter().

File

./acquia_contenthub.module, line 296
Contains acquia_contenthub.module.

Code

function acquia_contenthub_module_implements_alter(&$implementations, $hook) {

  // Ensure that our implementation of hook_element_info_alter runs after the
  // system modules implementation.
  if ($hook === 'element_info_alter') {
    $implementation = $implementations['acquia_contenthub'];
    unset($implementations['acquia_contenthub']);
    $implementations['acquia_contenthub'] = $implementation;
  }
}