function 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()

19 calls to node_type_get_types()
blog_install in drupal/modules/blog/blog.install
Implements hook_install().
CommentFieldsTest::testCommentDefaultFields in drupal/modules/comment/comment.test
Tests that the default 'comment_body' field is correctly added.
comment_field_extra_fields in drupal/modules/comment/comment.module
Implements hook_field_extra_fields().
comment_forms in drupal/modules/comment/comment.module
Implements hook_forms().
comment_modules_enabled in drupal/modules/comment/comment.install
Implements hook_modules_enabled().

... See full list

File

drupal/modules/node/node.module, line 393
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;
}