jj
09-06-2006, 06:29 AM
Hi everyone,
didn't find something usefull in the search, so now I'm asking globally.
Anyone can show me how to edit a thread/post with the vbulletin api functions? Currently I'm using
global $vbulletin;
if ($postuserid == 0) $postuserid = $this->postuserid;
$threadinfo = array();
$threaddm =& datamanager_init('Thread_FirstPost', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
$foruminfo = fetch_foruminfo($postforumid);
$threaddm->set('forumid', $postforumid);
$threaddm->set('userid', $postuserid);
$threaddm->set('pagetext', $postpagetext);
$threaddm->set('title', $posttitle);
$threaddm->set('allowsmilie', '1');
$threaddm->set('visible', '1');
$threaddm->set_info('forum', $foruminfo);
$tid = $threaddm->save();
build_forum_counters($postforumid);
return $tid;
to create a thread within a function.
Some help would be very nice.
Cheers
Jens
didn't find something usefull in the search, so now I'm asking globally.
Anyone can show me how to edit a thread/post with the vbulletin api functions? Currently I'm using
global $vbulletin;
if ($postuserid == 0) $postuserid = $this->postuserid;
$threadinfo = array();
$threaddm =& datamanager_init('Thread_FirstPost', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
$foruminfo = fetch_foruminfo($postforumid);
$threaddm->set('forumid', $postforumid);
$threaddm->set('userid', $postuserid);
$threaddm->set('pagetext', $postpagetext);
$threaddm->set('title', $posttitle);
$threaddm->set('allowsmilie', '1');
$threaddm->set('visible', '1');
$threaddm->set_info('forum', $foruminfo);
$tid = $threaddm->save();
build_forum_counters($postforumid);
return $tid;
to create a thread within a function.
Some help would be very nice.
Cheers
Jens