You are here

function hosting_server_node_info in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 server/hosting_server.module \hosting_server_node_info()
  2. 7.3 server/hosting_server.module \hosting_server_node_info()

Implementation of hook_node_info().

File

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;
}