';
if(!empty($answer["title"])){
$right["answer"] .=
'
';
}
if(!empty($answer["url"])){
$right["answer"] .=
$frontend->drawlink($answer["url"]);
}
$right["answer"] .= '
';
if(!empty($answer["thumb"])){
$right["answer"] .=
'
' .
'' .
'';
}
foreach($answer["description"] as $description){
switch($description["type"]){
case "text":
$right["answer"] .= $frontend->highlighttext($get["s"], $description["value"]);
break;
case "title":
$right["answer"] .=
'
' .
htmlspecialchars($description["value"]) .
'
';
break;
case "italic":
$right["answer"] .=
'
' .
$frontend->highlighttext($get["s"], $description["value"]) .
'';
break;
case "quote":
$right["answer"] .=
'
' .
$frontend->highlighttext($get["s"], $description["value"]) .
'
';
break;
case "code":
$right["answer"] .=
'
' .
$frontend->highlightcode($description["value"], true) .
'
';
break;
case "inline_code":
$right["answer"] .=
'
' .
htmlspecialchars($description["value"]) .
'
';
break;
case "link":
$right["answer"] .=
'
' . htmlspecialchars($description["value"]) . '';
break;
case "image":
$right["answer"] .=
'
';
break;
case "audio":
$right["answer"] .=
'
';
break;
}
}
$right["answer"] .= '
';
if(count($answer["table"]) !== 0){
$right["answer"] .= '
';
foreach($answer["table"] as $info => $value){
$right["answer"] .=
'' .
'' . $info . ' | ' .
'' . $value . ' | ' .
'
';
}
$right["answer"] .= '
';
}
if(count($answer["sublink"]) !== 0){
$right["answer"] .= '
';
$icons = glob("static/icon/*");
foreach($answer["sublink"] as $website => $url){
$flag = false;
$icon = str_replace(" ", "", strtolower($website));
foreach($icons as $path){
if(pathinfo($path, PATHINFO_FILENAME) == $icon){
$flag = true;
break;
}
}
if($flag === false){
$icon = "website";
}
$right["answer"] .=
'
' .
'' .
'
' .
'
' . $website . '
' .
'
' .
'';
}
$right["answer"] .= '
';
}
$right["answer"] .=
'