You are here

function hosting_client_node_info in Hosting 7.4

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

Implements hook_node_info().

File

client/hosting_client.module, line 30

Code

function hosting_client_node_info() {
  $types["client"] = array(
    "name" => t('Client'),
    'base' => '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;
}