function services_client_menu_alter in Services Client 7.2
Same name and namespace in other branches
- 7 services_client.module \services_client_menu_alter()
Implements hook_menu_alter().
File
- ./
services_client.module, line 48
Code
function services_client_menu_alter(&$items) {
// Services client depends on services_client_connection while
// services_client_connection can be used stand-alone. If we have the
// combination, the following change makes it easier to navigate in the menu
// between both.
$items['admin/structure/services_client/connection']['type'] = MENU_LOCAL_TASK;
}