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
1 2 3 | function node_type_get_description(NodeTypeInterface $node_type ) { return $node_type ->getDescription(); } |
Please login to continue.