Well, in your PHP code, you could do something like:
PHP Code:
$notifications = '';
//Only display for non-zero values.
if ($vbulletin->userinfo['pmunread'])
{
$notifications .= 'Unread PMs: ' . $vbulletin->userinfo['pmunread'] . PHP_EOL;
}
//Check for other notifications in the same way.
Then you could wrap the $notifications string in the appropriate HTML before appending it to a template hook or you might have a custom template designed that you would simply register this string so it can by output there.