You are here

function drupalchat_return_profile_url in DrupalChat 6.2

Same name and namespace in other branches
  1. 7.2 drupalchat.module \drupalchat_return_profile_url()
  2. 7 drupalchat.module \drupalchat_return_profile_url()
1 call to drupalchat_return_profile_url()
_drupalchat_get_auth in ./drupalchat.module

File

./drupalchat.module, line 1134
Module code for DrupalChat.

Code

function drupalchat_return_profile_url() {
  global $user;
  $link = 'javascript:void(0)';
  if ($user->uid > 0) {
    $link = url('user/' . $user->uid);
  }
  return $link;
}