You are here

function linkedin_auth_token_access in LinkedIn Integration 7

Same name and namespace in other branches
  1. 6 linkedin_auth/linkedin_auth.module \linkedin_auth_token_access()

@todo Please document this function.

See also

http://drupal.org/node/1354

1 string reference to 'linkedin_auth_token_access'
linkedin_auth_menu in linkedin_auth/linkedin_auth.module

File

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

Code

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