| 7 node.module | node_type_get_names() |
| 8 node.module | node_type_get_names() |
Returns a list of available node type names.
This list can include types that are queued for addition or deletion. See _node_types_build() for details.
Return value
An array of node type names, keyed by the type.
10 calls to node_type_get_names()
File
- modules/
node/ node.module, line 437 - The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.
Code
function node_type_get_names() {
return _node_types_build()->names;
}
Login or register to post comments