You are here

function theme_lt_loggedinblock in LoginToboggan 5

Same name and namespace in other branches
  1. 6 logintoboggan.module \theme_lt_loggedinblock()
  2. 7 logintoboggan.module \theme_lt_loggedinblock()

Theme the loggedinblock that shows for logged-in users.

1 theme call to theme_lt_loggedinblock()
logintoboggan_block in ./logintoboggan.module
Implementation of hook_block

File

./logintoboggan.module, line 1174
Logintoboggan Module

Code

function theme_lt_loggedinblock() {
  global $user;
  return check_plain($user->name) . ' | ' . l(t('Log out'), 'logout');
}