function scs_permission in Simplenews Content Selection 8
Same name and namespace in other branches
- 7.2 scs.module \scs_permission()
- 7 scs.module \scs_permission()
Implements hook_permission()
File
- ./
scs.module, line 30 - General hooks and commonly-used functions
Code
function scs_permission() {
return array(
'administer scs' => array(
'title' => t('Administer Simplenews Content Selection'),
'description' => t('User can perform administrative tasks like changing view mode and newsletter content type.'),
),
);
}