You are here

function hosting_site_node_info in Hostmaster (Aegir) 6

Implementation of hook_node_info

File

modules/hosting/site/hosting_site.nodeapi.inc, line 11
Site nodeapi implementations.

Code

function hosting_site_node_info() {
  $types["site"] = array(
    "type" => 'site',
    "name" => 'Site',
    "module" => 'hosting_site',
    "has_title" => TRUE,
    "title_label" => 'Domain name',
    "description" => hosting_node_help("site"),
    "has_body" => 0,
    "body_label" => '',
    "min_word_count" => 0,
  );
  return $types;
}