You are here

function closeblock_permission in Close Block 7

Implements hook_permission().

File

./closeblock.module, line 24
Add close button to blocks.

Code

function closeblock_permission() {
  return array(
    'closeblock' => array(
      'title' => t('Close block'),
      'description' => t('Add close button to block.'),
    ),
  );
}