You are here

function hosting_task_ajax_list in Hostmaster (Aegir) 6

1 string reference to 'hosting_task_ajax_list'
hosting_task_menu in modules/hosting/task/hosting_task.module
Implementation of hook_menu().

File

modules/hosting/task/hosting_task.module, line 67
Web server node type is defined here.

Code

function hosting_task_ajax_list($node) {
  $return['markup'] = hosting_task_table($node);
  $return['changed'] = $node->changed;
  drupal_json($return);
  exit;
}