You are here

function _notifications_signature in Notifications 5

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

Signature for url parameters

2 calls to _notifications_signature()
notifications_get_link in ./notifications.module
Return url for subscriptions. Confirmation form is not optional.
notifications_page_unsubscribe in ./notifications.admin.inc
Menu callback add subscription

File

./notifications.module, line 1059
Notifications module

Code

function _notifications_signature($params) {
  return md5('notifications:' . drupal_get_private_key() . ':' . implode(':', $params));
}