You are here

function drupalchat_return_profile_url in DrupalChat 7

Same name and namespace in other branches
  1. 6.2 drupalchat.module \drupalchat_return_profile_url()
  2. 7.2 drupalchat.module \drupalchat_return_profile_url()
3 calls to drupalchat_return_profile_url()
drupalchat_ex_auth in ./drupalchat.module
drupalchat_init in ./drupalchat.module
@todo Please document this function.
_drupalchat_get_auth in ./drupalchat.module

File

./drupalchat.module, line 1398
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;
}