You are here

function _notifications_send_methods in Notifications 6.4

Same name and namespace in other branches
  1. 5 notifications.module \_notifications_send_methods()
  2. 6 notifications.module \_notifications_send_methods()
  3. 6.2 notifications.module \_notifications_send_methods()
  4. 6.3 notifications.module \_notifications_send_methods()
  5. 7 notifications.module \_notifications_send_methods()

List of send methods

Parameters

$account: Optional user account, for checking permissions against this account

5 calls to _notifications_send_methods()
notifications_destination_anonymous_methods in includes/destination.inc
Get methods that support anonymous addresses
notifications_send_methods in ./notifications.module
Get list of send methods for user or anonymous account
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.
notifications_user_overview in ./notifications.pages.inc
Menu callback. Overview page for user subscriptions.

File

./notifications.module, line 1844
Notifications module

Code

function _notifications_send_methods($account = NULL) {
  return variable_get('notifications_send_methods', messaging_method_list($account));
}