You are here

function internal_nodes_integration_access in Internal Nodes 7

Internal nodes integration access callback.

1 string reference to 'internal_nodes_integration_access'
internal_nodes_rules_event_info in ./internal_nodes.rules.inc
Implements hook_rules_event_info().

File

./internal_nodes.rules.inc, line 41
Internal nodes Rules Integration

Code

function internal_nodes_integration_access($type, $name) {
  if ($type == 'event') {
    return entity_access('view', 'node');
  }
}