der Post hier schließt eigentlich an den hier an: https://forum.contenido.org/viewtopic.p ... e_cms_type
Das Problem ist, dass bei der Verwendung von "make_cms_type" zur dynamischen Erstellung von Containers die "filelist" leider nicht funktioniert.
Code: Alles auswählen
$filelist = make_cms_type('CMS_FILELIST',1);
print_r($filelist);
//ergibt: ";?>getAllWidgetOutput(); ?>
Original:
Code: Alles auswählen
public function generateViewCode() {
$code = '";?><?php
$fileList = new cContentTypeFilelist(\'%s\', %s, %s);
echo $fileList->generateFileListCode();
?><?php echo "';
// escape ' to avoid accidently ending the string in $code
$code = sprintf($code, str_replace('\'', '\\\'', $this->_rawSettings), $this->_id, 'array()');
return $code;
}
Code: Alles auswählen
public function generateViewCode() {
$code = '";?><?php
$fileList = new cContentTypeFilelist(\'%s\', %s, %s);
echo $fileList->generateFileListCode();
?><?php echo "';
// escape ' to avoid accidently ending the string in $code
//$code = sprintf($code, str_replace('\'', '\\\'', $this->_rawSettings), $this->_id, 'array()');
$code = "";
return $code;
}