You are here

function hosting_client_node_info in Hosting 5

Same name and namespace in other branches
  1. 6.2 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()

File

client/hosting_client.module, line 8

Code

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