You are here

function hosting_server_node_info in Hostmaster (Aegir) 6

Implementation of hook_node_info().

File

modules/hosting/server/hosting_server.module, line 8

Code

function hosting_server_node_info() {
  $types["server"] = array(
    "type" => 'server',
    "name" => 'Server',
    "module" => 'hosting_server',
    "has_title" => true,
    "title_label" => t('Host name'),
    "description" => hosting_node_help("server"),
    "has_body" => 0,
    "body_label" => '',
    "min_word_count" => 0,
  );
  return $types;
}