function node_type_get_types
Same name in other branches
- 8.9.x core/modules/node/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
An array of node types, as objects, keyed by the type.
See also
19 calls to node_type_get_types()
- blog_install in modules/
blog/ blog.install - Implements hook_install().
- CommentFieldsTest::testCommentDefaultFields in modules/
comment/ comment.test - Tests that the default 'comment_body' field is correctly added.
- comment_field_extra_fields in modules/
comment/ comment.module - Implements hook_field_extra_fields().
- comment_forms in modules/
comment/ comment.module - Implements hook_forms().
- comment_modules_enabled in modules/
comment/ comment.install - Implements hook_modules_enabled().
File
-
modules/
node/ node.module, line 393
Code
function node_type_get_types() {
return _node_types_build()->types;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.