vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   How to get $threadid after posting a new thread? (https://vborg.vbsupport.ru/showthread.php?t=209313)

koon85 03-24-2009 04:32 PM

How to get $threadid after posting a new thread?
 
I create a new thread using vB_DataManager_Thread_FirstPost, after that, I want to use vB_DataManager_Post to create a new post immediately in that thread. But I failed. Because I can't get the ID of the new thread created by vB_DataManager_Thread_FirstPost.

Here is the code to create a new thread:
PHP Code:

<?php
// Create a new thread
require_once('./global.php');
require_once(
'./includes/class_dm.php');
require_once(
'./includes/class_dm_threadpost.php');
require_once(
'./includes/functions_databuild.php'); // required for "build_forum_counters"

$threadsdm = new vB_DataManager_Thread_FirstPost($vbulletinERRTYPE_STANDARD);
$forumid '4';
$userid '202';
$title 'Test New Thread';
$pagetext 'This works... Whoodavdvdavadvdaavavddavvad Hoo!!';
$allow_smilie '1';
$visible '1';

$foruminfo fetch_foruminfo($forumid); 
$threadsdm->set_info('forum'$foruminfo);  
$threadsdm->set('forumid'$foruminfo['forumid']); 
$threadsdm->set('forumid'$forumid);
$threadsdm->set('userid'$userid);
$threadsdm->set('title'$title);
$threadsdm->set('pagetext'$pagetext); 
$threadsdm->set('allowsmilie'$allow_smilie);
$threadsdm->set('visible'$visible);
$threadsdm->save();
unset(
$threadsdm);  
build_forum_counters($forumid);
?>

Here is the code to create a new post:

PHP Code:

<?php
// Create a new thread
require_once('./global.php');
require_once(
'./includes/class_dm.php');
require_once(
'./includes/class_dm_threadpost.php');
require_once(
'./includes/functions_databuild.php'); // required for "build_forum_counters"

$postdm = new vB_DataManager_Post($vbulletinERRTYPE_STANDARD); 
$timenow TIMENOW ;
$threadinfo fetch_threadinfo($threadid);
$foruminfo fetch_foruminfo($forumid);
[
B][COLOR="Red"]$threadid '2421';[/COLOR][/B]
$userid '202';
$wiadomosc 'dbbvgdbxb dga shsf dzbfbd';

$postdm->set_info('forum'$foruminfo);
$postdm->set_info('thread'$threadinfo);  
$postdm->set('threadid'$threadid);
$postdm->set('title'$symid);
$postdm->set('userid'$userid);
$postdm->set('pagetext'$wiadomosc);
$postdm->set('allowsmilie'1);
$postdm->set('visible'1);
$postdm->set('dateline'$timenow);
$postdm->save();

unset(
$postdm); 
build_forum_counters($forumid);
?>

How to combine the two to the only one script? The problem is that, I can't get the $threadid from the new thread after it was posted and pass it to the second, I have try using
PHP Code:

$threadid $threaddm->save(); 

But it still not work! I have error:
Quote:

Fatal error: Call to a member function save() on a non-object in C:\wamp\www\forum3\test1.php on line 27
Here is the code:
PHP Code:

<?php
// Create a new thread
require_once('./global.php');
require_once(
'./includes/class_dm.php');
require_once(
'./includes/class_dm_threadpost.php');
require_once(
'./includes/functions_databuild.php'); // required for "build_forum_counters"

$threadsdm = new vB_DataManager_Thread_FirstPost($vbulletinERRTYPE_STANDARD);
$forumid '4';
$userid '202';
$title 'Test New Thread';
$pagetext 'This works... Whoodavdvdavadvdaavavddavvad Hoo!!';
$allow_smilie '1';
$visible '1';

$foruminfo fetch_foruminfo($forumid); 
$threadsdm->set_info('forum'$foruminfo);  
$threadsdm->set('forumid'$foruminfo['forumid']); 
$threadsdm->set('forumid'$forumid);
$threadsdm->set('userid'$userid);
$threadsdm->set('title'$title);
$threadsdm->set('pagetext'$pagetext); 
$threadsdm->set('allowsmilie'$allow_smilie);
$threadsdm->set('visible'$visible);
$threadsdm->save();

[
B][COLOR="Red"]$threadid $threaddm->save(); [/COLOR][/B][COLOR="Blue"][B//line 27[/B][/COLOR]
$postdm = new vB_DataManager_Post($vbulletinERRTYPE_STANDARD); 
$timenow TIMENOW ;
$threadinfo fetch_threadinfo($threadid);
$foruminfo fetch_foruminfo($forumid);
[
B][COLOR="Red"]//$threadid = '693';[/COLOR][/B]
$userid '202';
$wiadomosc 'dbbvgdbxb dga shsf dzbfbd';

$postdm->set_info('forum'$foruminfo);
$postdm->set_info('thread'$threadinfo);  
$postdm->set('threadid'$threadid);
$postdm->set('title'$symid);
$postdm->set('userid'$userid);
$postdm->set('pagetext'$wiadomosc);
$postdm->set('allowsmilie'1);
$postdm->set('visible'1);
$postdm->set('dateline'$timenow);
$postdm->save();

unset(
$threadsdm);  
unset(
$postdm); 
build_forum_counters($forumid);
?>

Any ideas will be appreciate very much, thanks!

Dismounted 03-25-2009 08:46 AM

You are instantiating the class as $threadsdm, and then saving it by calling a method from $threaddm (see the difference? ;)). Also, you should only be running save() (for the thread) once (get rid of one of them).


All times are GMT. The time now is 05:33 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01068 seconds
  • Memory Usage 1,767KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete