1 node.module | node_type_get_types() |
Returns a list of all the available node types.
This list can include types that are queued for addition or deletion. See _node_types_build() for details.
Return value
stdClass[]: An array of node types, as objects, keyed by the type.
See also
File
- core/
modules/ node/ node.module, line 390 - The core module that allows content to be submitted to the site.
Code
function node_type_get_types() {
return _node_types_build()->types;
}