if (isset($data['inURL'])) { $text .= Design::erstelleZeileShort(false, 'Aufruf', 'e', $data['inURL'], 'v'); } if (isset($data['inContent']) && trim($data['inContent']) != '') { $text .= Design::erstelleZeileShort(false, 'Daten', 'e', Design::zeichneEingabebereich(false, 'Daten', $data['inContent'], 'v')); } if (trim($text) != '') { $text = Design::erstelleBlock(false, "Eingabe", $text); } // erzeugt den Ausgabeteil des Aufrufs $text2 = ''; if (isset($data['outStatus'])) { $text2 .= Design::erstelleZeileShort(false, 'Status', 'e', $data['outStatus'], 'v'); } if (isset($data['outContent']) && trim($data['outContent']) != '') { $text2 .= Design::erstelleZeileShort(false, 'Daten', 'e', Design::zeichneEingabebereich(false, 'Daten', $data['outContent'], 'v')); } if (trim($text2) != '') { $text2 = Design::erstelleBlock(false, "Ausgabe", $text2); } // fügt Eingabe und Ausgabe zu einem Block zusammen $text3 = ''; if (trim($text) != '') { $text3 .= Design::erstelleZeileShort(false, $text, 'break'); } if (trim($text2) != '') { $text3 .= Design::erstelleZeileShort(false, $text2, 'break'); } $addLink = ''; if (file_exists($mdFile) || file_exists($mdFileResult)) { $addLink = '<br><a style="font-size: 75%" href="' . $data['name'] . '.html' . '">Beschreibung ></a>';