get_current_mode(); $layout = $recordmodes->get_layout($current_mode); $template_mode = $recordmodes->get_template_directory($current_mode); if (!$template_mode) $template_mode = "common"; if (!$record_css_already_included) { if (file_exists($include_path."/templates/record/".$template_mode."/styles/style.css")) { $retour_aff .= ""; } $record_css_already_included = true; } //Début du flux if ($id==-1) { if($layout['TYPE']=='table'){ $retour_aff.=""; $aff_notice_table_pos=0; }else{ $retour_aff.="
"; } } if ($id==-2) { if($layout['TYPE']=='table'){ for ($i=$aff_notice_table_pos; $i<$layout['COLUMS']; $i++) { $retour_aff.="
"; } if ($aff_notice_table_pos<$layout['COLUMS']){ $retour_aff.=""; } $retour_aff.="
 
"; }else{ $retour_aff.="
"; $retour_aff.=""; } } if ($id>=0) { if($layout['TYPE']=='table'){ if ($aff_notice_table_pos>=$layout['COLUMS']) { $aff_notice_table_pos=0; $retour_aff.=""; } if (!$aff_notice_table_pos){ $retour_aff.=""; } $aff_notice_table_pos++; $retour_aff.=""; }else{ $retour_aff.="
"; } switch ($lvl) { case 'notice_display' : case 'bulletin_display' : case 'resa' : $retour_aff .= record_display::get_display_extended($id, $template_mode); break; case 'more_result' : default : if($search_type_asked=='perio_a2z'){ $retour_aff .= record_display::get_display_extended($id, $template_mode); } else { $retour_aff .= record_display::get_display_in_result($id, $template_mode); } break; } if($layout['TYPE']=='table'){ $retour_aff.=""; }else{ $retour_aff.="
"; } } return $retour_aff; }