';
foreach ($bibliographicArray as $content) {
switch ($content['fieldId']) {
case 'titleinput1': $bibliographicDataHTML .= '
| Titel |
' .$content['fieldValue'] .' |
';
break;
case 'authorinput1': $i=1;
case 'authorinput2': $i=2;
case 'authorinput3': $i=3;
case 'authorinput4': $i=4;
case 'authorinput5': $i=5;
case 'authorinput6': $i=6;
case 'authorinput7': $i=7;
case 'authorinput8': $i=8;
case 'authorinput9': $i=9;
if (strlen($content['fieldValue'])) {
$bibliographicDataHTML .= '
| Autor/-in ${i} |
' .$content['fieldValue'] .' |
';
}
break;
case 'publicationyearinput1': $bibliographicDataHTML .= '
| Jahr |
' .$content['fieldValue'] .' |
';
break;
case 'abstractinput1': $i=1;
case 'abstractinput2': $i=2;
case 'abstractinput3': $i=3;
if (strlen($content['fieldValue'])) {
$bibliographicDataHTML .= '
| Abstract ${i} |
' .$content['fieldValue'] .' |
';
}
break;
default: $bibliographicDataHTML .= '
| Unbekannt |
' .$content['fieldValue'] .' |
}
';
}
}
$bibliographicDataHTML .= '