You are here

function services_client_get_id in Services Client 7.2

Same name and namespace in other branches
  1. 7 services_client.module \services_client_get_id()

Get current site services client ID

Return value

string ID of current site.

6 calls to services_client_get_id()
EventHandler::getControlData in include/event.inc
Retrieve controll data for current entity.
ServicesClientControl::getData in include/plugin.inc
Retrieve new controlling data which contains info about current node.
ServicesClientPluginsTestCase::testServicesClientControl in tests/plugin.test
services_client_error_mail in services_client_error/services_client_error.module
Implements hook_mail().
_services_raw_fields_update in services_raw/services_raw.inc
Update entity calling array of _save functions.

... See full list

File

./services_client.module, line 109

Code

function services_client_get_id() {
  return variable_get('services_client_id', drupal_get_token('services_client'));
}