You are here

function block_attributes_permission in Block Attributes 7

Implements hook_permission().

File

./block_attributes.module, line 50
Enhanced control over the HTML attributes of any Block.

Code

function block_attributes_permission() {
  return array(
    'administer block attributes' => array(
      'title' => t('Administer block attributes'),
      'description' => t('Set HTML attributes for blocks.'),
    ),
  );
}