You are here

function block_edit_perm in Block edit 6

Implementation of hook_perm().

File

./block_edit.module, line 29
Adds edit links to blocks and nodes to make administration more intuitive.

Code

function block_edit_perm() {
  return array(
    'view block edit links',
    'view node edit links',
    'administer block_edit',
  );
}