vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   New Thread - Force Update on Post Table (https://vborg.vbsupport.ru/showthread.php?t=219361)

MrD3SAi 07-24-2009 04:07 PM

New Thread - Force Update on Post Table
 
I am creating a plugin that will have a checkbox in the newthread template. I want to setup a new plugin, but not sure what hook to use (I have tried a lot of them based on the newthread.php and functions_newpost.php) to update a value in the post table (not thread table) column to set to 1.

Thanks in advance!

Dismounted 07-25-2009 04:48 AM

You're probably trying to find newthread_post_complete.

MrD3SAi 07-27-2009 12:03 PM

I tried putting the below in newthread_post_complete, but it didn't update the corresponding post column "homepage" in the post table to 1 when the checkbox was checked:
PHP Code:

if ($foruminfo['forumid'] == 19 || $foruminfo['forumid'] == 21)
{
    
$dataman->set_info('homepage'$post['homepage']);


After I click on Submit, it makes the page blank (assuming there is an error). However, it does create the thread and post, but doesn't make the homepage = 1 in the post table. Can you let me know what I should be doing on new thread create to mark the post table column "homepage" = 1 when a new thread is created with that checkbox checked?

--------------- Added [DATE]1248704503[/DATE] at [TIME]1248704503[/TIME] ---------------

I actually did it by using newpost_complete and a custom DB query:
PHP Code:

if (($foruminfo['forumid'] == 19 || $foruminfo['forumid'] == 21) && $type == 'thread' && $post['homepage'] != "0")
    
$vbulletin->db->query_write("UPDATE " TABLE_PREFIX "post SET homepage = $post[homepage] WHERE postid = $post[postid]"); 


ForumsMods 07-27-2009 01:40 PM

Did you validate homepage before??

MrD3SAi 07-27-2009 01:52 PM

Yes, I did that in newthread_post_start:
PHP Code:

if ($foruminfo['forumid'] == 19 || $foruminfo['forumid'] == 21)
{
    
$vbulletin->input->clean_array_gpc('p', array('homepage' => TYPE_STR));
    
$newpost['homepage'] =& $vbulletin->GPC['homepage'];
    
$newpost['homepage'] = ($newpost['homepage'] == "on" 0);



ForumsMods 07-27-2009 02:23 PM

No, you have vlaidate fields before:
threadfpdata_start
PHP Code:

$this->validfields['homepage'] = array(TYPE_STRREQ_YES); 

Change newthread_post_complete to newpost_process and use setr instead of set_info

MrD3SAi 07-27-2009 02:55 PM

Yes - I also had that in place. Sorry, didn't know what you meant. Also, I noted in the second reply that I got it working. Thanks though!


All times are GMT. The time now is 11:59 PM.

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.01066 seconds
  • Memory Usage 1,730KB
  • 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)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)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