public static function addSeparator($string, $separator = ' - ') { $o = ''; if ($string != '') { $o = $separator . $string; } return $o; }