function theme_user_logout_link in Ajax Login/Register 6.2
1 theme call to theme_user_logout_link()
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;
}