function notifications_account_notifications in Notifications 7
Implements hook_notifications()
File
- notifications_account/
notifications_account.module, line 132 - Notifications module - User subscriptions tabs
Code
function notifications_account_notifications($op) {
switch ($op) {
case 'subscription options':
// All types can be in block
$types['account_tab'] = array(
'#title' => t('Account tab'),
'#description' => t('Display full subscriptions tab on user account pages.'),
);
return $types;
}
}