function scs_permission in Simplenews Content Selection 7
Same name and namespace in other branches
- 8 scs.module \scs_permission()
- 7.2 scs.module \scs_permission()
Implements hook_permission()
File
- ./
scs.module, line 46 - Select Drupal content to create a newsletter
Code
function scs_permission() {
return array(
'administer scs' => array(
'title' => t('Administer Simplenews Content Selection'),
'description' => t('User can perform administrative tasks like changing default title etc'),
),
'scs create newsletter' => array(
'title' => t('Create newsletters with content selection'),
'description' => t('User can create newsletter with Simplenews Content Selection'),
),
);
}