function services_client_get_id in Services Client 7
Same name and namespace in other branches
- 7.2 services_client.module \services_client_get_id()
Get current site services client ID
Return value
string ID of current site.
3 calls to services_client_get_id()
- services_client_data_process in ./
services_client.module - This function takes inbound data objects and a type and determines if there are tasks for them. If there are, it checks conditions and then generates connections and organizes the data to pass to the calling functions
- _services_raw_fields_update in services_raw/
services_raw.inc - Update entity calling array of _save functions.
- _services_raw_field_update in services_raw/
services_raw.inc - Update entity calling array of _save functions.
File
- ./
services_client.module, line 1223 - 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_get_id() {
return variable_get('services_client_id', drupal_get_token('services_client'));
}