You are here

function editableviews_module_implements_alter in Editable Views 7

Implements hook_module_implements_alter().

File

./editableviews.module, line 411
editableviews.module Contain module code. @todo:

Code

function editableviews_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'views_data_alter') {

    // Move our hook_views_data_alter() to the end of the list, so we can
    // doctor relationships provided by other modules.
    $group = $implementations['editableviews'];
    unset($implementations['editableviews']);
    $implementations['editableviews'] = $group;
  }
}