You are here

function sharedblocks_permission in Shared Blocks 7.2

Same name and namespace in other branches
  1. 7 sharedblocks.module \sharedblocks_permission()

Implements hook_permission().

File

./sharedblocks.module, line 68

Code

function sharedblocks_permission() {
  return array(
    'publish blocks' => array(
      'title' => t('publish blocks'),
      'description' => t('Grants access to the Published Blocks settings page'),
    ),
    'subscribe to blocks' => array(
      'title' => t('subscribe to blocks'),
      'description' => t('Grants access to the Subscribed Blocks settings page'),
    ),
  );
}