vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Making a variable global? (https://vborg.vbsupport.ru/showthread.php?t=140656)

Merriweather 02-27-2007 10:13 PM

Making a variable global?
 
I installed a the VB Image Hosting mod (https://vborg.vbsupport.ru/showthread.php?t=123481) which I love, but have an issue and though it's marked "supported", the author is not replying. I am hoping someone can help.

There's a template modification made to make the number of images the user has uploaded show in the postbit. It works fine in the forums, however, if I post an announcement, that space is left blank, like it can't retrieve the variable to know what to display.

The variable it pulls into the postbit is called $post[vbimghost] and I'm wondering if someone could help direct me as to where to find what that variable is pulling from? I've gone through the files from the product but there's no "$post[vbimghost]" in them, so I'm a little lsot as to where to look.

I'm newer to vB, but not to programming, so a push in the right direction would be helpful.

Reeve of shinra 02-28-2007 12:22 AM

The $post variable is an array in the core vb functions that queries iirc the user and userfield tables.

Merriweather 02-28-2007 01:58 AM

Thank you, that got me started. I actually found the code in a postbit for the mod, and it looks like this:

Code:

$rec = $vbulletin->db->query_read("
        SELECT count(*) mark
        FROM ".TABLE_PREFIX."vbimghost
        WHERE userid='".$post['userid']."' and imgprivate='0'
        ");
$row = $vbulletin->db->fetch_array($rec);
$post['vbimghost']=$row['mark'];

I tohught the issue may be because it's querying based on the $post['userid'] and that when I post an announcement, there is no such variable, but that is not the case. $post['userid'] is used in the announcement, so that part is OK.

Now I am stuck. I can only guess that somehow, this plugin isn't being used when the postbit of an announcement is pulled, but I don't know why.

Reeve of shinra 02-28-2007 02:41 AM

I'm not familiar with the mod but there are other hacks (like the journal and photopost and vbgallery, and maybe a few others) that work in a similiar way, they may have an answer to your issue.

If anything, I think the plug in is using a hook that is only called up for threads, not announcements. You may need to add the code to a new plugin using the correct hook, or changing the hook location to global. The later may have a performance hit on your forums so use with care.

Merriweather 02-28-2007 03:01 AM

Ah ha! You got me going in the right direction. The hook location was showthread_postbit_create and I changed it to postbit_display_complete and that fixed the issue.

Thank you. :)


All times are GMT. The time now is 05:51 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.01185 seconds
  • Memory Usage 1,719KB
  • 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
  • (1)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete