Variable's For Beginners
I hope that no one already wrote this.
Copyright 2006 MeleFire, You may not move this article from vBulletin.org Description: When writing hacks you may somtimes use the 'vBulletin Options' system, this system allows you to easily add your own options page for your hack. It also gives you variables that look like: Code:
$vbulletin->options[optionname] Code:
Array[optionname] How to Fix the Problem: Fixing the problem is not very hard. But you will need to have complete accses to the PHP page that calls the template. If you do not have a PHP page or a template visit this article, it tells how to make a custom vBulletin PHP/Template page. Now you must open up your PHP page and find this code:* Code:
$navbits[$parent] = Code:
$myvariable = $vbulletin->options[youroptionname] *If you did not find the first code you may just place the second code any where after the 'START MAIN SCRIPT'. FAQ: Q: Where is my option name? A: On your options page for your hack(in DEBUG mode) click edit find varname: This is your option name. http://img210.imageshack.us/img210/5...name5rl.th.jpg Q: What version of vBulletin will this work for? A: 3.5.0 - 3.6 Beta 2, but only 3.5.4 and 3.6 Beta 2 have been heavily tested. ---------- I hope this helped, please give me feedback!:classic: |
Well, in the tempates you need to use $vboptions[foo] instead of $vbulletin->options[foo]. If you want to use $vbulletin->options[foo] in templates you need to use {$vbulletin-options['foo']} and all is well. The former ($vboptions[foo]) would be prefered in the templates for easy reading as well as figuring out where they come from.
|
opps oh well, this way works too though
|
I wanted to confirm some things before I posted more, so from marco and alan-cit from irc.
You should really refrence varibles instead of copying them. $myvarible =& $vbulletin->options['foo']; Since we just want to reassign it an easier to remember name, and since this I assume would be used just for an easier to read option, it will save on memory. If we needed to change $myvarible for some reason, like +1 we would change the original as well, in which case we would want to copy it |
All times are GMT. The time now is 07:50 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|