node_type_get_description

node_type_get_description(NodeTypeInterface $node_type)

Description callback: Returns the node type description.

Parameters

\Drupal\node\NodeTypeInterface $node_type: The node type object.

Return value

string The node type description.

File

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

Code

function node_type_get_description(NodeTypeInterface $node_type) {
  return $node_type->getDescription();
}
doc_Drupal
2016-10-29 09:31:59
Comments
Leave a Comment

Please login to continue.