node_type_get_types

7 node.module node_type_get_types()
8 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

node_type_get_type()

19 calls 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;
}

Comments

Return type

Returns something like:

<?php
Array
(
[
article] => stdClass Object
 
(
      [
type] => article
     
[name] => Article
     
[base] => node_content
     
[module] => node
     
[description] => Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.
      [
help] =>
      [
has_title] => 1
     
[title_label] => Title
     
[custom] => 1
     
[modified] => 1
     
[locked] => 0
     
[disabled] => 0
     
[orig_type] => article
     
[disabled_changed] =>
  )
...
?>

Login or register to post comments