function sharedblocks_permission in Shared Blocks 7
Same name and namespace in other branches
- 7.2 sharedblocks.module \sharedblocks_permission()
Implements hook_permission().
File
- ./
sharedblocks.module, line 73
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 Subscribe Blocks settings page'),
),
);
}