function notifications_destination_access in Notifications 6.4
Same name and namespace in other branches
- 7 notifications.module \notifications_destination_access()
Menu access callback for destinations
1 string reference to 'notifications_destination_access'
- notifications_menu in ./
notifications.module - Implementation of hook_menu().
File
- ./
notifications.module, line 368 - Notifications module
Code
function notifications_destination_access($op, $destination) {
// Access will be granted only to administrator for now
return user_access('administer notifications');
}