'; $html .= '

Date de sortie

'; $html .= ''; $html .= ''; echo $html; } function features(array $featuresArray, array $featuresAdminArray, User $userCurrent) { $userModule = UserModule::getInstance(); $isGrantedAsUserCurrent = $userModule->getAuthorizationChecker()->isGrantedAsAdministrator($userCurrent); if(count($featuresArray) > 0 || (count($featuresAdminArray) > 0 && $isGrantedAsUserCurrent)) { $html = '
'; $html .= '

Évolutions

'; $html .= ''; $html .= '
'; echo $html; } } function maintenance(array $maintenanceArray, array $maintenanceAdminArray, User $userCurrent) { $userModule = UserModule::getInstance(); if(count($maintenanceArray) > 0 || count($maintenanceAdminArray) > 0) { $html = '
'; $html .= '

Maintenance

'; $html .= ''; $html .= '
'; echo $html; } }