vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Plugin and vBulletin Options with Postbit (https://vborg.vbsupport.ru/showthread.php?t=192102)

CypherSTL 09-28-2008 06:30 AM

Plugin and vBulletin Options with Postbit
 
Alright, I've been playing around with this for two days and I still cannot get this working properly.

Option Menu Code for AdminCP:
Code:

            <setting varname="cat_yaas_postbit_pos" displayorder="21">
                <datatype>number</datatype>
                <optioncode><![CDATA[<select name=\"setting[$setting[varname]]\" tabindex=\"1\" class=\"bginput\">
<option value=\"0\" " . iif($setting['value']==0,'selected="selected"') . ">userinfo_right (default)</option>
<option value=\"1\" " . iif($setting['value']==1,'selected="selected"') . ">userinfo_right_after_posts</option>
<option value=\"2\" " . iif($setting['value']==2,'selected="selected"') . ">userinfo_left</option>
<option value=\"3\" " . iif($setting['value']==3,'selected="selected"') . ">signature_start</option>
<option value=\"4\" " . iif($setting['value']==4,'selected="selected"') . ">signature_end</option>
</select>]]></optioncode>
                <defaultvalue>0</defaultvalue>
            </setting>

Output for Plugin:
Code:

<plugin active="1" executionorder="5">
            <title>YAAS in Posbit</title>
            <hookname>postbit_display_complete</hookname>
            <phpcode><![CDATA[
           
            if ($vbulletin->options['cat_yaas_postbit_pos'] == 1)
            {
                eval('$template_hook[\'postbit_userinfo_right_after_posts\'] .= "' . fetch_template('awards_postbit_display') . '";');
            }
            else if ($vbulletin->options['cat_yaas_postbit_pos'] == 2)
            {
                eval('$template_hook[\'postbit_userinfo_left\'] .= "' . fetch_template('awards_postbit_display') . '";');
            }
            else if ($vbulletin->options['cat_yaas_postbit_pos'] == 3)
            {
                eval('$template_hook[\'postbit_signature_start\'] .= "' . fetch_template('awards_postbit_display') . '";');
            }
            else if ($vbulletin->options['cat_yaas_postbit_pos'] == 4)
            {
                eval('$template_hook[\'postbit_signature_end\'] .= "' . fetch_template('awards_postbit_display') . '";');
            }
            else {
                eval('$template_hook[\'postbit_userinfo_right\'] .= "' . fetch_template('awards_postbit_display') . '";');
            }

]]></phpcode>
        </plugin>

If I remove all the if else statements and only add the one eval line and manually input the proper template hook, it works correctly. It almost seems as if its not even pulling the vBoptions.

However, everything is properly working within the postbit that displays during Private Messages, but on the Forums, it seems as if the vbulletin option variable doesn't exist.


All times are GMT. The time now is 04: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.02010 seconds
  • Memory Usage 1,716KB
  • 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_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (1)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