You are here

function fe_block_module_implements_alter in Features Extra 7

Implements hook_module_implements_alter().

File

fe_block/fe_block.module, line 1125
Provide features components for exporting core blocks and settings.

Code

function fe_block_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'default_fe_block_settings_alter') {

    // Ensure fe_block is the first imlementation to be called, so we can
    // convert to the newest format.
    $group = $implementations['fe_block'];
    unset($implementations['fe_block']);
    $rest = array_reverse($implementations, TRUE);
    $rest['fe_block'] = $group;
    $implementations = array_reverse($rest, TRUE);
  }
}