You are here

function theme_my_account_link in Ajax Login/Register 6.2

1 theme call to theme_my_account_link()
ajax_get_login_block_content in ./ajax_register.module

File

./ajax_register.module, line 172

Code

function theme_my_account_link($attributes) {
  global $user;
  $user_uri = l(t('My Account'), 'user/' . $user->uid, array(
    'attributes' => $attributes,
  ));
  return $user_uri;
}