You are here

function hosting_task_node_info in Hostmaster (Aegir) 6

Implementation of hook_node_info()

File

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

Code

function hosting_task_node_info() {

  #management
  $types["task"] = array(
    "type" => 'task',
    "name" => 'Task',
    "module" => 'hosting_task',
    "has_title" => FALSE,
    "title_label" => '',
    "description" => hosting_node_help("task"),
    "has_body" => 0,
    "body_label" => '',
    "min_word_count" => 0,
  );
  return $types;
}