1.20.x 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

node_type_get_type()

File

modules/node/node.module, line 393
The core module that allows content to be submitted to the site.

Code

function node_type_get_types() {
  return _node_types_build()->types;
}