function nodesymlinks_theme in NodeSymlinks 7
Same name and namespace in other branches
- 6 nodesymlinks.module \nodesymlinks_theme()
Implements hook_theme().
File
- ./
nodesymlinks.module, line 389 - 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_theme() {
return array(
'nodesymlinks_form_items' => array(
'render element' => 'form',
'file' => 'nodesymlinks.inc',
),
);
}