function notifications_page_check_signature in Notifications 6.4
Same name and namespace in other branches
- 7 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 233 - User pages for Notifications
Code
function notifications_page_check_signature() {
static $signed;
if (!isset($signed)) {
$signed = !empty($_GET['signature']) && notifications_check_signature();
}
return $signed;
}