You are here

function hosting_web_server_node_info in Hosting 5

File

web_server/hosting_web_server.module, line 107
Web server node type is defined here.

Code

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