You are here

function hosting_client_node_info in Hosting 6.2

Same name and namespace in other branches
  1. 5 client/hosting_client.module \hosting_client_node_info()
  2. 7.4 client/hosting_client.module \hosting_client_node_info()
  3. 7.3 client/hosting_client.module \hosting_client_node_info()

Implementation of hook_node_info().

File

client/hosting_client.module, line 31

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