public function main($content, array $conf) {
$this->conf = $conf;
$this->pi_setPiVarDefaults();
$this->pi_loadLL();
$content = '';
$background_image = $this->cObj->parentRecord['data']['media'];
// Wenn ein Bild vorhanden ist
if ($background_image != '') {
$content .= '<img src="uploads/media/'.$background_image.'" alt="" title="" width="100%" />';
}
return $this->pi_wrapInBaseClass($content);
}
当我期待HTML时,我会得到这样的路径:
<img src="uploads/media/1" alt="" title="" width="100%">
这不是我写的,所以它理解为什么它的行为方式如此。感谢任何提示。