vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Setting prefix on newthread_post_start (https://vborg.vbsupport.ru/showthread.php?t=233300)

JamesGunner 01-17-2010 04:59 PM

Quote:

Originally Posted by James Birkett (Post 1958319)
The way I did it was to just assign both prefix values to the prefix ID:
PHP Code:

$vbulletin->GPC['prefixid'] = 'prefixid';
$newpost['prefixid'] = 'prefixid'


Yeah but I guess your method would cause too much work for me since I have multiple forums with different prefixes I want to use.

Lynne 01-17-2010 06:00 PM

Quote:

Originally Posted by JamesGunner (Post 1958364)
Yeah but I guess your method would cause too much work for me since I have multiple forums with different prefixes I want to use.

Then put a condition around it.

PHP Code:

switch $forumid
{
  case 
xx:
    
$vbulletin->GPC['prefixid'] = 'xxxxxx'
    
$newpost['prefixid'] = 'xxxxxx';  
       break;
  case 
yy:
    
$vbulletin->GPC['prefixid'] = 'yyyyyy'
    
$newpost['prefixid'] = 'yyyyyy';  
       break;
  case 
zz:
    
$vbulletin->GPC['prefixid'] = 'zzzzzz'
    
$newpost['prefixid'] = 'zzzzzz';  
       break;


I'm not sure if $forumid is valid there - take a look at the code around the hook you are using.

JamesGunner 01-17-2010 07:19 PM

well the correct one should be $foruminfo from what I know. Thanks for the help anyway. I searched for other products and finally found something similar where I got my solution from. Thanks for the help Lynne, I got my product finished.

James Birkett 01-19-2010 03:40 PM

Quote:

Originally Posted by JamesGunner (Post 1958364)
Yeah but I guess your method would cause too much work for me since I have multiple forums with different prefixes I want to use.

I used conditions to see if the forum ID matched.

JamesGunner 01-19-2010 03:54 PM

Quote:

Originally Posted by James Birkett (Post 1960305)
I used conditions to see if the forum ID matched.

well the only problem I see is when the file gets updated or if vbulletin decides to upgrade that file. So I created a product to handle that for me:

https://vborg.vbsupport.ru/showthread.php?t=233364


All times are GMT. The time now is 09:37 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.01042 seconds
  • Memory Usage 1,735KB
  • 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
  • (2)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete