function Notifications_Subscription::create_destination in Notifications 6.4
Same name and namespace in other branches
- 7 notifications.subscription.inc \Notifications_Subscription::create_destination()
Create destination for this subscription
1 call to Notifications_Subscription::create_destination()
- Notifications_Subscription::check_destination in includes/
notifications_subscription.class.inc - Check destination or create it if new
File
- includes/
notifications_subscription.class.inc, line 375 - Drupal Notifications Framework - Default class file
Class
- Notifications_Subscription
- Message destination class
Code
function create_destination($method = NULL, $address = NULL) {
return $this
->validate_destination($method, $address, TRUE);
}