| Versions | |
|---|---|
| 4.7 | node_get_name($node) |
Determine the human readable name for a given type.
$node Either a node object, a node array, or a string containing the node type.
The human readable name of the node type.
modules/
<?php
function node_get_name($node) {
return _node_names('name', $node);
}
?>