Finished composer base, fixed issues, Missing tables

Update composer.php, content.php, and 5 more files...
This commit is contained in:
2022-06-27 11:35:39 +02:00
parent a44ddf3671
commit 9313ceff83
7 changed files with 708 additions and 440 deletions

View File

@@ -186,9 +186,9 @@ function processStandardContentSubNode(mixed $elementNode, string $prepend="", s
echo($prepend.getContentItemText($elementNode["content"], false, true).$append);
}
}
}
}*/
function createElementNode(mixed $elementNode, string $prepend="", string $append="") : void {
/*function createElementNode(mixed $elementNode, string $prepend="", string $append="") : void {
// Checking if we actually have a JSON object.
if(!is_array($elementNode)) {
echo('<p>Not array node !</p>');
@@ -615,7 +615,6 @@ function createElementNode(mixed $elementNode, string $prepend="", string $appen
default:
printErrorTextElement(sprintf(localize("error.content.data.part.unknown"), $elementNode["type"]));
break;
}
}*/
}/**/
?>