You are here

function nodesinblock_perm in Nodes In Block 6

Implementation of hook_perm().

File

./nodesinblock.module, line 16
Nodes in block makes it possible to add multiple nodes in one block.

Code

function nodesinblock_perm() {
  return array(
    'administer nodes in block configuration',
    'administer nodes in block queue',
    'deny configuration on node form',
  );
}