function node_type_get_description

Description callback: Returns the node type description.

Parameters

$node_type: The node type object.

Return value

The node type description.

1 string reference to 'node_type_get_description'
node_menu in drupal/core/modules/node/node.module
Implements hook_menu().

File

drupal/core/modules/node/node.module, line 417
The core module that allows content to be submitted to the site.

Code

function node_type_get_description($node_type) {
  return $node_type->description;
}