function notifications_user_permission in Notifications 7
Implements hook_permission()
File
- notifications_user/
notifications_user.module, line 40 - Notifications module - User subscriptions tabs
Code
function notifications_user_permission() {
return array(
'subscribe to author' => array(
'title' => t('Subscribe to author'),
'description' => t('Subscribe to content posted by a given user.'),
),
);
}