function drd_server_domain_run_cron in Drupal Remote Dashboard Server 7
Same name and namespace in other branches
- 6.2 drd_server.domain.inc \drd_server_domain_run_cron()
- 6 drd_server.domain.inc \drd_server_domain_run_cron()
- 7.2 drd_server.domain.inc \drd_server_domain_run_cron()
1 string reference to 'drd_server_domain_run_cron'
- drd_server_xmlrpc in ./
drd_server.module - Implementation of hook_xmlrpc().
File
- ./
drd_server.domain.inc, line 72
Code
function drd_server_domain_run_cron($sid) {
$user = drd_server_load_user($sid);
if (is_string($user)) {
return drd_server_error($user);
}
drupal_cron_run();
$result = theme('status_messages');
return drd_server_result('run.cron', $result);
}