function notifications_build_url in Notifications 6.4
Shorthand for building absolute signed URLs for messages
See also
1 call to notifications_build_url()
- notifications_token_values in ./
notifications.module - Implementation of hook_token_values()
File
- ./
notifications.module, line 1563 - Notifications module
Code
function notifications_build_url($op, $type = 'subscription', $object = NULL, $params = array()) {
$params += array(
'absolute' => TRUE,
'signed' => TRUE,
);
return notifications_build_link($op, $params, $type, $object, 'url');
}