You are here

function _nodesymlinks_include in NodeSymlinks 7

Same name and namespace in other branches
  1. 6 nodesymlinks.module \_nodesymlinks_include()

Include nodesymlinks file.

7 calls to _nodesymlinks_include()
nodesymlinks_form_node_form_alter in ./nodesymlinks.module
Implements hook_form_FORM_ID_alter().
nodesymlinks_node_delete in ./nodesymlinks.module
Implements hook_node_delete().
nodesymlinks_node_insert in ./nodesymlinks.module
Implements hook_node_insert().
nodesymlinks_node_prepare in ./nodesymlinks.module
Implements hook_node_prepare().
nodesymlinks_node_presave in ./nodesymlinks.module
Implements hook_node_presave().

... See full list

File

./nodesymlinks.module, line 183
Node Symlinks allows creating duplicate menu links with unique id to all nodes. As a result all these duplicates have unique menu trails and breadcrumbs.

Code

function _nodesymlinks_include($name = '') {
  $name = $name ? 'nodesymlinks.' . $name : 'nodesymlinks';
  module_load_include('inc', 'nodesymlinks', $name);
}