Returns an array of node types that should be managed by permissions.

By default, this will include all node types in the system. To exclude a specific node from getting permissions defined for it, set the node_permissions_$type variable to 0. Core does not provide an interface for doing so. However, contrib modules may exclude their own nodes in hook_install(). Alternatively, contrib modules may configure all node types at once, or decide to apply some other hook_node_access() implementation to some or all node types.

Return value

An array of node types managed by this module.

Related topics

3 calls to node_permissions_get_configured_types()
hook_node_access in modules/node/node.api.php
Control access to a node.
node_node_access in modules/node/node.module
Implements hook_node_access().
node_permission in modules/node/node.module
Implements hook_permission().

File

modules/node/node.module, line 3181
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_permissions_get_configured_types() {
  $configured_types = array();
  foreach (node_type_get_types() as $type => $info) {
    if (variable_get('node_permissions_' . $type, 1)) {
      $configured_types[] = $type;
    }
  }
  return $configured_types;
}