Full ELMS Learning Network documentation
function node_type_get_types
cis7 node.module | node_type_get_types() |
cle7 node.module | node_type_get_types() |
elmsmedia7 node.module | node_type_get_types() |
icor7 node.module | node_type_get_types() |
meedjum_blog7 node.module | node_type_get_types() |
mooc7 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
50 calls to node_type_get_types()
- addanother_uninstall in sites/
all/ modules/ ulmus/ addanother/ addanother.install - Implement hook_uninstall().
- addanother_update_7001 in sites/
all/ modules/ ulmus/ addanother/ addanother.install - Port over to the new variable storage system.
- auto_nodetitle_set_title in sites/
all/ modules/ ulmus/ auto_nodetitle/ auto_nodetitle.module - Sets the automatically generated nodetitle for the node
- blog_install in modules/
blog/ blog.install - Implements hook_install().
- comment_field_extra_fields in modules/
comment/ comment.module - Implements hook_field_extra_fields().
File
- 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;
}