node_type_get_types

  1. drupal
    1. 7 node.module function
Drupal 7 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

An array of node types, as objects, keyed by the type.

See also

node_type_get_type()

56 calls to node_type_get_types()

2 string references to 'node_type_get_types'

File

modules/node/node.module, line 384
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_types() {
  return _node_types_build()->types;
}