You are here

function nodesymlinks_perm in NodeSymlinks 6

Implementation of hook_perm().

File

./nodesymlinks.module, line 90
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_perm() {
  return array(
    'administer nodesymlinks',
  );
}