function nodesymlinks_theme in NodeSymlinks 6
Same name and namespace in other branches
- 7 nodesymlinks.module \nodesymlinks_theme()
Implementation of hook_theme()
File
- ./
nodesymlinks.module, line 388 - 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(
'arguments' => array(
'form' => array(),
),
'file' => 'nodesymlinks.inc',
),
'nodesymlinks_edit_links' => array(
'arguments' => array(
'nid' => NULL,
),
),
);
}