You are here

function services_client_hook_load in Services Client 7

Load hook object by ID

Parameters

$hid: Hook id

File

./services_client.module, line 298
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_hook_load($hid) {
  return services_client_get_client_hooks_list(array(
    'hid' => $hid,
  ));
}