You are here

function logintoboggan_validating_id in LoginToboggan 6

Same name and namespace in other branches
  1. 5 logintoboggan.module \logintoboggan_validating_id()
  2. 7 logintoboggan.module \logintoboggan_validating_id()

Modified version of $DRUPAL_AUTHENTICATED_RID

  • gets the role id for the "validating" user role.
9 calls to logintoboggan_validating_id()
logintoboggan_content_access_integration_content_access_special_roles in contrib/logintoboggan_content_access_integration/logintoboggan_content_access_integration.module
Implementation of hook_content_access_special_roles().
logintoboggan_content_access_integration_enable in contrib/logintoboggan_content_access_integration/logintoboggan_content_access_integration.install
Implementation of hook_enable().
logintoboggan_cron in ./logintoboggan.module
Implementation of hook_cron().
logintoboggan_form_alter in ./logintoboggan.module
Implementation of hook_form_alter()
logintoboggan_user in ./logintoboggan.module
Implementation of hook_user().

... See full list

File

./logintoboggan.module, line 912
Logintoboggan Module

Code

function logintoboggan_validating_id() {
  return variable_get('logintoboggan_pre_auth_role', DRUPAL_AUTHENTICATED_RID);
}