You are here

function logintoboggan_validate_email_access in LoginToboggan 6

Same name and namespace in other branches
  1. 7 logintoboggan.module \logintoboggan_validate_email_access()

Access check for user e-mail validation.

1 string reference to 'logintoboggan_validate_email_access'
logintoboggan_menu in ./logintoboggan.module
Implementation of hook_menu()

File

./logintoboggan.module, line 919
Logintoboggan Module

Code

function logintoboggan_validate_email_access($account, $timestamp) {
  return $account->uid && $timestamp < time();
}