You are here

function notifications_page_check_signature in Notifications 7

Same name and namespace in other branches
  1. 6.4 notifications.pages.inc \notifications_page_check_signature()

Check current URL is signed

2 calls to notifications_page_check_signature()
notifications_page_check_access in ./notifications.pages.inc
Check access to current page, included signature
notifications_page_check_confirmation in ./notifications.pages.inc
Check URL is signed and it doesn't need confirmation

File

./notifications.pages.inc, line 171
User pages for Notifications

Code

function notifications_page_check_signature() {
  static $signed;
  if (!isset($signed)) {
    $signed = !empty($_GET['signature']) && notifications_check_signature();
  }
  return $signed;
}