function computing_update_services_wrapper in Drupal Computing 7.2
1 string reference to 'computing_update_services_wrapper'
- computing_services_resources in ./
computing.services.inc - Implements hook_services_resources().
File
- ./
computing.services.inc, line 216
Code
function computing_update_services_wrapper($id, $data) {
//drupal_debug(func_get_args(), "computing_update_services_wrapper");
if ($id != $data['id']) {
return FALSE;
}
return computing_update((object) $data);
}