You are here

function hosting_client_node_info in Hostmaster (Aegir) 6

Implementation of hook_node_info().

File

modules/hosting/client/hosting_client.module, line 24

Code

function hosting_client_node_info() {
  $types["client"] = array(
    "type" => 'client',
    "name" => 'Client',
    "module" => 'hosting_client',
    "has_title" => TRUE,
    "title_label" => 'Client name',
    "description" => hosting_node_help("client"),
    "has_body" => 0,
    "body_label" => '',
    "min_word_count" => 0,
  );
  return $types;
}