You are here

function linkedin_profile_display in LinkedIn Integration 7

Same name and namespace in other branches
  1. 6 linkedin_profile/linkedin_profile.pages.inc \linkedin_profile_display()

@todo Please document this function.

See also

http://drupal.org/node/1354

1 string reference to 'linkedin_profile_display'
linkedin_profile_menu in linkedin_profile/linkedin_profile.module

File

linkedin_profile/linkedin_profile.pages.inc, line 137

Code

function linkedin_profile_display($account) {
  $profile = $account->linkedin;
  if (!isset($profile['error-code'])) {
    return theme('linkedin_profile_user_page', array(
      'profile' => $account->linkedin,
    ));
  }
}