You are here

function hook_services_client_process_events in Services Client 7.2

Allows to process sync results.

Parameters

array $results: An array of ServicesClientEventResult objects. Each of these objects represents single operation executed by services_client module.

2 functions implement hook_services_client_process_events()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

services_client_error_services_client_process_events in services_client_error/services_client_error.module
Implements hook_services_client_process_errors().
services_client_test_services_client_process_events in tests/services_client_test/services_client_test.module
Implements hook_services_client_process_events().
3 invocations of hook_services_client_process_events()
drush_services_client_process_queue in ./services_client.drush.inc
Process queued sync jobs
ServicesClientErrorWebTestCase::testServicesClientErrors in services_client_error/tests/services_client_error.test
services_client_process_events in ./services_client.module
Process entity by trigerring all events that are enabled and are matching conditions.

File

./services_client.api.php, line 155
Services client allows you to push different objects from local drupal installation to remote servers via REST api.

Code

function hook_services_client_process_events($results) {
}