You are here

function internal_nodes_force_404 in Internal Nodes 7

Callback returns FALSE to simulate not being able to load the argument to node/%.

1 string reference to 'internal_nodes_force_404'
internal_nodes_menu_get_item_alter in ./internal_nodes.module
Implements hook_menu_get_item_alter().

File

./internal_nodes.module, line 122
Internal nodes

Code

function internal_nodes_force_404($node, $cid = NULL) {
  if (module_exists('rules')) {
    rules_invoke_event('internal_nodes_denied', $node);
  }
  return FALSE;
}