You are here

function theme_user_logout_link in Ajax Login/Register 6.2

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

File

./ajax_register.module, line 167

Code

function theme_user_logout_link($attributes) {
  $logout_uri = l(t('Logout'), 'logout', array(
    'attributes' => $attributes,
  ));
  return $logout_uri;
}