Hallo wie kann ich ein Label setzen?
ich möchte einem Nutzer Antworten und danach auch ein Label setzen wie kann ich das umsetzen?
Die Nachricht versende ich so:
Code
if (isset($_POST['threadID'])) {
$htmlInputProcessor = new \wcf\system\html\input\HtmlInputProcessor();
$htmlInputProcessor->process($textAsHtml, 'com.woltlab.wbb.post', 0);
$threadAction = new \wbb\data\post\PostAction([], 'create', [
'data' => [
'threadID' => $_POST['threadID'],
'time' => TIME_NOW,
'userID' => 297,
],
'htmlInputProcessor' => $htmlInputProcessor,
]);
$threadAction->executeAction();
}
Display More