function homebox_build_title in Homebox 7.3
Same name and namespace in other branches
- 7.2 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']),
));
}