public static function getEguidanceSessionUserDataTable(ADALoggableUser $tutoredUserObj) { $user_fiscal_code = $tutoredUserObj->getFiscalCode(); if (is_null($user_fiscal_code)) { $user_fiscal_code = translateFN("L'utente non ha fornito il codice fiscale"); } $thead = array(translateFN("Dati utente"), ''); $tbody = array(array(translateFN("Codice fiscale dell'utente"), $user_fiscal_code), array(translateFN("Nome e cognome dell'utente"), $tutoredUserObj->getFullName()), array(translateFN("Nazionalità dell'utente"), $tutoredUserObj->getCountry())); return BaseHtmlLib::tableElement('', $thead, $tbody); }