You are here

function feeds_xls_module_implements_alter in Feeds XLS 7

Implements hook_module_implements_alter

Until the feeds module stops using its own feeds_alter, and instead uses the drupal_alter function, this hook is pointless. Inestead we have altered the weight of this module to be one more than the feeds module.

File

./feeds_xls.module, line 92

Code

function feeds_xls_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'feeds_processor_targets_alter' && isset($implementations['feeds_xls'])) {
    $set = $implementations['feeds_xls'];
    unset($implementations['feeds_xls']);
    $implementations['feeds_xls'] = $set;
  }
}