You are here

function homebox_build_title in Homebox 7.2

Same name and namespace in other branches
  1. 7.3 homebox.module \homebox_build_title()

Menu title callback.

1 string reference to 'homebox_build_title'
homebox_menu in ./homebox.module
Implements hook_menu().

File

./homebox.module, line 336
Homebox main file, takes care of global functions settings constants, etc.

Code

function homebox_build_title($title) {
  return t($title, array(
    '@user' => format_username($GLOBALS['user']),
  ));
}