You are here

function restws_module_implements_alter in RESTful Web Services 7.2

Same name and namespace in other branches
  1. 7 restws.module \restws_module_implements_alter()

Implements hook_module_implements_alter().

File

./restws.module, line 499
RESTful web services module.

Code

function restws_module_implements_alter(&$implementations, $hook) {

  // Make sure that restws runs last.
  if ($hook == 'menu_alter') {
    $group = $implementations['restws'];
    unset($implementations['restws']);
    $implementations['restws'] = $group;
  }
}