function services_client_menu_alter in Services Client 7
Same name and namespace in other branches
- 7.2 services_client.module \services_client_menu_alter()
Implements hook_menu_alter().
File
- ./
services_client.module, line 42 - Services client module allows to push different types of objects on different types of events such as node_save, user_save to remote masters.
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;
}