From
the script:
PHP Code:
$result = array();
$textData = array(
'title' => $input['title'],
'parentid' => $input['parentid'],
'rawtext' => $input['text'],
'userid' => $user['userid'],
'authorname' => $user['username'],
'created' => $time,
'iconid' => $input['iconid'],
'prefixid' => $input['prefixid'],
'hvinput' => $input['hvinput'],
);
// sets publishdate
$textData += $this->getArticleInput();
if (!empty($_POST['setfor']))
{
$textData['setfor'] = intval($_POST['setfor']);
}
$options = array(
'facebook' => $this->getFacebookOptionsForAddNode(),
);
// We need to convert WYSIWYG html here and run the img check
if (isset($textData['rawtext']))
{
$tmpText = $api->callApi('bbcode', 'convertWysiwygTextToBbcode', array($textData['rawtext'], $options));
if (($phrase = vB5_Frontend_Controller_Bbcode::verifyImgCheck($tmpText)) !== true)
{
$results['error'] = $phrase;
$this->sendAsJson($results);
return;
}
}
$nodeId = $api->callApi('content_text', 'add', array($textData, $options));
$this->handleErrorsForAjax($result, $nodeId);