You are here

function theme_user_login_link in Ajax Login/Register 6.2

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

File

./ajax_register.module, line 155

Code

function theme_user_login_link($attributes, $query) {
  $attributes['class'] = $attributes['class'] . ' thickbox';
  $login_uri = l(t('Login'), 'ajax_register/login', array(
    'attributes' => $attributes,
    'query' => $query,
  ));
  return $login_uri;
}