Allan
25/11/2007, 20h46
chdir('./forums');
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_threadpost.php');
$threaddm = new vB_DataManager_Thread_FirstPost($vbulletin, ERRTYPE_STANDARD);
$forumid = 2;
$postuserid = 1;
$userid = 1;
$username = 'Orban';
$pagetext = 'test';
$title = 'hello';
$allowsmilie = '1';
$visible = '1';
$threaddm->do_set('forumid', $forumid);
$threaddm->do_set('postuserid', $postuserid);
$threaddm->do_set('userid', $userid);
$threaddm->do_set('username', $username);
$threaddm->do_set('pagetext', $pagetext);
$threaddm->do_set('title', $title);
$threaddm->do_set('allowsmilie', $allowsmilie);
$threaddm->do_set('visible', $visible);
$threaddm->save();
Tout les champs sont requis.Vous obtiendrez une erreur si tous les champs ne sont pas remplis ou non correct
Traduction : Fred
Source : http://www.vbulletin.org/forum/showthread.php?t=97283
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_threadpost.php');
$threaddm = new vB_DataManager_Thread_FirstPost($vbulletin, ERRTYPE_STANDARD);
$forumid = 2;
$postuserid = 1;
$userid = 1;
$username = 'Orban';
$pagetext = 'test';
$title = 'hello';
$allowsmilie = '1';
$visible = '1';
$threaddm->do_set('forumid', $forumid);
$threaddm->do_set('postuserid', $postuserid);
$threaddm->do_set('userid', $userid);
$threaddm->do_set('username', $username);
$threaddm->do_set('pagetext', $pagetext);
$threaddm->do_set('title', $title);
$threaddm->do_set('allowsmilie', $allowsmilie);
$threaddm->do_set('visible', $visible);
$threaddm->save();
Tout les champs sont requis.Vous obtiendrez une erreur si tous les champs ne sont pas remplis ou non correct
Traduction : Fred
Source : http://www.vbulletin.org/forum/showthread.php?t=97283