function _notifications_send_methods in Notifications 6.2
Same name and namespace in other branches
- 5 notifications.module \_notifications_send_methods()
- 6.4 notifications.module \_notifications_send_methods()
- 6 notifications.module \_notifications_send_methods()
- 6.3 notifications.module \_notifications_send_methods()
- 7 notifications.module \_notifications_send_methods()
List of send methods
Parameters
$account: Optional user account, for checking permissions against this account
9 calls to _notifications_send_methods()
- notifications_add_subscription_form in ./
notifications.pages.inc - Form for creating new subscriptions
- notifications_content_form in notifications_content/
notifications_content.pages.inc - Generic subscriptions content form
- notifications_form_subscribe_confirm in ./
notifications.pages.inc - Form for subscription confirmation
- notifications_subscriptions_filters in ./
notifications.manage.inc - List node administration filters that can be applied.
- notifications_subscriptions_operations in ./
notifications.manage.inc - Subscription mass operations.
File
- ./
notifications.module, line 1481 - Notifications module
Code
function _notifications_send_methods($account = NULL) {
return variable_get('notifications_send_methods', messaging_method_list($account));
}