function background_process_get_service_host_options in Background Process 7.2
1 call to background_process_get_service_host_options()
- background_process_get_service_hosts in ./
background_process.module - Get service hosts defined in the system.
File
- ./
background_process.module, line 215
Code
function background_process_get_service_host_options($service_host) {
if ($callback = background_process_prepare_dispatcher_callback($service_host['dispatcher'], 'options')) {
return call_user_func($callback, $service_host);
}
return array();
}