You are here

function linkedin_auth_token_access in LinkedIn Integration 6

Same name and namespace in other branches
  1. 7 linkedin_auth/linkedin_auth.module \linkedin_auth_token_access()
1 string reference to 'linkedin_auth_token_access'
linkedin_auth_menu in linkedin_auth/linkedin_auth.module

File

linkedin_auth/linkedin_auth.module, line 49
Implement LinkedIn Authentication service for user login

Code

function linkedin_auth_token_access($account) {
  if (user_is_anonymous()) {
    return TRUE;
  }
  return FALSE;
}