You are here

function hosting_context_node_types in Hosting 7.3

Same name and namespace in other branches
  1. 6.2 hosting.module \hosting_context_node_types()
  2. 7.4 hosting.module \hosting_context_node_types()

Define the node types that have associated provision contexts.

Deprecated

See issue #2763509. If you really need this, you can check if a nid is in the hosting_context table.

File

./hosting.module, line 1281
Hosting module.

Code

function hosting_context_node_types() {
  return array(
    'site',
    'platform',
    'server',
  );
}