PHP Code:
$threaddm =& datamanager_init('Thread_FirstPost', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
$foruminfo = fetch_foruminfo(forumid);
$threaddm->set_info('forum', foruminfo);
$threaddm->set('forumid', $foruminfo['forumid']);
$threaddm->set('userid', userid);
$threaddm->set('title', title);
$threaddm->set('pagetext', message);
$threaddm->set('allowsmilie', 0);
$threaddm->set('visible', 1);
$threaddm->set('dateline', TIMENOW);
if($threaddm->errors){
Do something about the error
}
}
else{
$threadid=$threaddm->save();
}