vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   where to find variable names etc (https://vborg.vbsupport.ru/showthread.php?t=177055)

turbosatan 04-24-2008 04:47 PM

where to find variable names etc
 
Hi

is there a thread or place in the developer area where i can find details on the variable names such as $forumid etc and the different ways i can sue them to call or display content etc.

like for instance i know there is a way of only dfisplaying certain content to certain usergroups and other things like that

what is the best way to find details on this.

Thanks in advance

Opserty 04-24-2008 05:39 PM

There is no big "list" so to speak you can look through the articles in the vBulletin Articles, otherwise you just have to look through the files.

Quote:

like for instance i know there is a way of only dfisplaying certain content to certain usergroups and other things like that
This must have been asked a thousand times before, use the search feature in future.

Code:

<if condition="is_member_of($bbuserinfo, X, Y, Z)">
    <some code...>
<else />
    <some code for non members of the x, y and z groups
</if>

Or PHP:
PHP Code:

if(is_member_of($vbulletin->userinfoXYZ))
{
    
//....
}
else
{
    
//....


X, Y and Z being the usergroup IDs

turbosatan 04-24-2008 06:17 PM

i would like to point out that the reason i know that there is a way of displaying to only certain member id's is that i have used the search feature but thanks for showing me again

if however there is no Big List can you make any suggestions on certain files which may be of more use than others to look at.

Surely there must be at least a basic list of variables and conditionals somewhere. i mean how do people work them out otherwise? i assume they are not made up and i dotn follow completely on the php-vbulletin link. i have bought some books on php tso i can learn as much as possible but i cant work out how vbulletin works for some reason.

Opserty 04-24-2008 06:49 PM

The only common ones are $db and $vbulletin ($vbulletin->forumcache, $vbulletin->bf_... and many more), use var_dump() on variables to see their contents then you have to figure out what each variable is for. The only way to learn is with experience and trial and error.

The variables are only created when they are needed, you might find $forumid in one file and not another so if someone created a list it would be pages long...


All times are GMT. The time now is 06:31 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.01024 seconds
  • Memory Usage 1,720KB
  • 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)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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