You are here

function node_type_get_description in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/node/node.module \node_type_get_description()

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