method fnom documentation in bbn\Entities\People

function($s, $full = false) { if (\bbn\Str::isUid($s)) { $s = $this->get_info($s); } if (is_array($s) && isset($s['nom'])) { $st = ''; if (!empty($s['civilite'])) { if ($full && isset(self::$civilites[$s['civilite']])) { $st .= self::$civilites[$s['civilite']].' '; } else{ $st .= $s['civilite'].' '; } } $st .= $s['nom']; if (!empty($s['prenom'])) { $st .= ' '.$s['prenom']; } return $st; } return null; }

BBN is a suite of PHP and JS libraries and VueJS components - all open-source! bbn.io, build applications, the quick way

This website uses cookies to ensure you get the best experience on our website.