W3cubDocs

/Drupal 8

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!node!node.module/function/node_type_get_description/8.1.x