vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   List of IF Conditions (https://vborg.vbsupport.ru/showthread.php?t=163560)

RonJH 11-25-2007 06:18 AM

List of IF Conditions
 
Does anyone know where I can find a list of all of the available <IF> conditions that can be used in vbulletin?

Marco van Herwaarden 11-25-2007 06:28 AM

There is no such list. You can use any variable that is defined on that specific script in a condition.

RonJH 11-25-2007 07:13 AM

Is it possible to run an IF command so that a plugin only appears IF a certain style is selected by the user?

Opserty 11-25-2007 10:04 AM

Why not just make the modifications to the selected style only? That way it will only appear if the user is running that style.

The if condition would look something like this:
Code:

<if condition="$bbuserinfo['styleid'] == X">
    SOME CODE
</if>

Where X is the styleid number of the certain style.

Jelmertjee 11-25-2007 10:53 AM

True, there is no list since anyone can go into a script and define some variables that can be used, but there are a few which I find useful and use quite often, take a look here.

ragtek 11-25-2007 10:58 AM

Quote:

Originally Posted by Jelmertjee (Post 1389106)
True, there is no list since anyone can go into a script and define some variables that can be used, but there are a few which I find useful and use quite often, take a look here.

i acnt see anything
Quote:

No Thread specified. If you followed a valid link, please notify the administrator

RonJH 11-26-2007 05:47 AM

<if condition="$bbuserinfo['styleid'] == 15">
include('/home/osorg/public_html/include/head.inc.php');
</if>

Is this accurate?

I put this inside a plugin which is being run at the global_complete hook.

I want it to only run if the user's style is set to ID 15. It doesn't seem to be working. Any suggestions?

Paul M 11-26-2007 06:59 AM

You need to put php in hooks, what you have there is template 'code'.

RedTyger 11-26-2007 10:22 AM

Code:

if ($vbulletin->userinfo['styleid'] == '15')
{
include(DIR . '/home/osorg/public_html/include/head.inc.php');
}


RonJH 11-30-2007 06:32 AM

Worked great, thank you!


All times are GMT. The time now is 01:38 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.01282 seconds
  • Memory Usage 1,728KB
  • 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
  • (2)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
  • (10)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