function _nodesymlinks_include in NodeSymlinks 6
Same name and namespace in other branches
- 7 nodesymlinks.module \_nodesymlinks_include()
6 calls to _nodesymlinks_include()
- nodesymlinks_form_alter in ./
nodesymlinks.module - Implementation of hook_form_alter(). Adds nodesymlinks item fields to the node form.
- nodesymlinks_item_alias_save in ./
nodesymlinks.inc - Create alias for duplicate menulink if original node.
- nodesymlinks_nodeapi in ./
nodesymlinks.module - Implementation of hook_nodeapi().
- nodesymlinks_pathauto_bulkupdate in ./
nodesymlinks.module - Implementation of hook_pathauto_bulkupdate().
- nodesymlinks_settings in ./
nodesymlinks.admin.inc - Admin settings form
File
- ./
nodesymlinks.module, line 217 - 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);
}