function notifications_send_intervals in Notifications 7
Same name and namespace in other branches
- 6.4 notifications.module \notifications_send_intervals()
- 6.2 notifications.module \notifications_send_intervals()
List of send intervals, only Immediately if no advanced queue enabled
10 calls to notifications_send_intervals()
- notifications_account_overview in notifications_account/
notifications_account.pages.inc - Menu callback. Overview page for user subscriptions.
- notifications_manage_subscriptions_filters in ./
notifications.manage.inc - List node administration filters that can be applied.
- notifications_manage_subscriptions_form in ./
notifications.manage.inc - Administer subscriptions. For user tabs and admin tabs
- notifications_manage_subscriptions_operations in ./
notifications.manage.inc - Subscription mass operations.
- notifications_settings_form in ./
notifications.admin.inc - Admin settings
File
- ./
notifications.module, line 1190 - Notifications module
Code
function notifications_send_intervals($account = NULL) {
if (function_exists('notifications_queue_send_intervals')) {
return notifications_queue_send_intervals($account);
}
else {
return array(
0 => t('Immediately'),
);
}
}