Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 08-10-2011, 06:15 PM
HMBeaty's Avatar
HMBeaty HMBeaty is offline
 
Join Date: Sep 2005
Posts: 4,141
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Trying to get this vB 4 code to work with vB 3

In one of my modifications, I've got a forum selection option, and can't get it to work in vB 3. Been too long since I actually looked at the code for vB 3 lol. Anyway, this is what I have for vB 4:
PHP Code:
function usml_construct_forum_chooser()
{
    global 
$vbulletin;

    
$forumids = array();

    foreach (
$vbulletin->forumcache AS $forumid => $forum)
    {
        
$forumperms $vbulletin->userinfo['forumpermissions']["$forumid"];

        if (
            
$forum['displayorder'] > 0
            
AND verify_forum_password($forum['forumid'], $forum['password'], false)
            AND (
$forum['options'] & $vbulletin->bf_misc_forumoptions['active'])
            AND (
$forumperms $vbulletin->bf_ugp_forumpermissions['canview'])
        )
        {
            
$forumids["$forumid"] = usml_construct_forum_depth($forum['depth']) . ' ' $forum['title'];
        }
    }
    return 
$forumids;
}

function 
usml_construct_forum_depth($depth)
{
    
$depthmark '';

    for (
$i 0$i $depth$i++)
    {
        
$depthmark .= '--';
    }
    return 
$depthmark;
}

function 
usml_construct_forum_options($forumids)
{
    
$options '';

    foreach (
$forumids AS $key => $val)
    {
        
$options .= render_option_template($val$key'');
    }
    return 
$options;

And this code is called in the main file with:
PHP Code:
$forumids usml_construct_forum_options(usml_construct_forum_chooser()); 
So, anyone that still uses/remembers vB 3 know what needs changed? lol

I've got this part of the code commented out at the moment
PHP Code:
// $forumids = usml_construct_forum_options(usml_construct_forum_chooser()); 
If I remove the "//" all I get is a white page, so I KNOW it's this code, but what?
Reply With Quote
  #2  
Old 08-10-2011, 06:50 PM
kh99 kh99 is offline
 
Join Date: Aug 2009
Location: Maine
Posts: 13,185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The only thing I can see is that maybe something isn't defined where you're using this. What hook are you doing that at?
Reply With Quote
  #3  
Old 08-10-2011, 07:49 PM
HMBeaty's Avatar
HMBeaty HMBeaty is offline
 
Join Date: Sep 2005
Posts: 4,141
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by kh99 View Post
The only thing I can see is that maybe something isn't defined where you're using this. What hook are you doing that at?
No hooks. This is all in php files

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

Also, I'm calling/defining it the same way in vB 4 and it works just fine, but for some reason, vB 3 wants to be difficult
Reply With Quote
  #4  
Old 08-10-2011, 08:22 PM
kh99 kh99 is offline
 
Join Date: Aug 2009
Location: Maine
Posts: 13,185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by HMBeaty View Post
Also, I'm calling/defining it the same way in vB 4 and it works just fine, but for some reason, vB 3 wants to be difficult
Oh, right...I was thinking you were going the other way, but of course this would be the wrong forum for that.

You could try calling cache_ordered_forums(1) right before your foreach in usml_construct_forum_chooser().
Reply With Quote
  #5  
Old 08-10-2011, 08:28 PM
HMBeaty's Avatar
HMBeaty HMBeaty is offline
 
Join Date: Sep 2005
Posts: 4,141
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That didn't work either
Reply With Quote
  #6  
Old 08-10-2011, 08:34 PM
kh99 kh99 is offline
 
Join Date: Aug 2009
Location: Maine
Posts: 13,185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OK, I tried it instead of just guessing , and it looks like the problem is that there's no render_option_template() function in vb3.
Reply With Quote
  #7  
Old 08-10-2011, 08:37 PM
HMBeaty's Avatar
HMBeaty HMBeaty is offline
 
Join Date: Sep 2005
Posts: 4,141
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

For some reason, I had a feeling that might be it Not sure what to change it to though lol
Reply With Quote
  #8  
Old 08-10-2011, 08:53 PM
kh99 kh99 is offline
 
Join Date: Aug 2009
Location: Maine
Posts: 13,185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I think something like this should work:

PHP Code:
function render_option_template($optiontitle$optionvalue$optionselected ''$optionclass '')
{
    eval(
'$option .= "' fetch_template('option') . '";');
   return 
$option;


and I think you could put the whole function in an 'if' that checks for vb3.
Reply With Quote
  #9  
Old 08-10-2011, 08:59 PM
HMBeaty's Avatar
HMBeaty HMBeaty is offline
 
Join Date: Sep 2005
Posts: 4,141
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by kh99 View Post
I think something like this should work:

PHP Code:
function render_option_template($optiontitle$optionvalue$optionselected ''$optionclass '')
{
    eval(
'$option .= "' fetch_template('option') . '";');
   return 
$option;

and I think you could put the whole function in an 'if' that checks for vb3.
You're awesome! That worked! Thanks
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 05:23 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.03978 seconds
  • Memory Usage 2,263KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (5)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (9)post_thanks_box
  • (9)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (9)post_thanks_postbit_info
  • (9)postbit
  • (9)postbit_onlinestatus
  • (9)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete