You are here

function drd_server_domain_run_cron in Drupal Remote Dashboard Server 7.2

Same name and namespace in other branches
  1. 6.2 drd_server.domain.inc \drd_server_domain_run_cron()
  2. 6 drd_server.domain.inc \drd_server_domain_run_cron()
  3. 7 drd_server.domain.inc \drd_server_domain_run_cron()

DRD Server Action to run cron on the current domain.

Return value

string Returnable string to DRD.

1 string reference to 'drd_server_domain_run_cron'
drd_server_drd_server_actions in ./drd_server.module
Implements hook_drd_server_actions().

File

./drd_server.domain.inc, line 106
Provides domain related functionality triggered by DRD.

Code

function drd_server_domain_run_cron() {
  drupal_cron_run();
  drupal_set_message('Cron completed');
  return drd_server_result('run.cron', '');
}