function services_client_process_errors in Services Client 7
Process errors when syncing objects to remote sites
1 call to services_client_process_errors()
- 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
File
- ./
services_client.module, line 1187 - 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_process_errors($errors = array()) {
module_invoke_all('sc_process_errors', $errors);
}