(2003-2009) * @author Froxlor team (2010-) * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package Functions * */ /** * Returns full style user details "Name, Firstname | Company" * * @param array An array with keys firstname, name and company * @return string The full details * * @author Florian Lippert */ function getCorrectFullUserDetails($userinfo) { $returnval = ''; if(isset($userinfo['firstname']) && isset($userinfo['name']) && isset($userinfo['company'])) { if($userinfo['company'] == '') { $returnval = $userinfo['name'] . ', ' . $userinfo['firstname']; } else { if($userinfo['name'] != '' && $userinfo['firstname'] != '') { $returnval = $userinfo['name'] . ', ' . $userinfo['firstname'] . ' | ' . $userinfo['company']; } else { $returnval = $userinfo['company']; } } } return $returnval; }