You are here

function notifications_destination_access in Notifications 7

Same name and namespace in other branches
  1. 6.4 notifications.module \notifications_destination_access()

Menu access callback for destinations

File

./notifications.module, line 409
Notifications module

Code

function notifications_destination_access($op, $destination) {

  // Access will be granted only to administrator for now
  return user_access('administer notifications');
}