The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Using PHP Code in Templates?
I wrote a bit of code that checks if the user is logged in or not. It's basically the same thing behind what you see at the top of the forum mainpage where it either displays the login/register form, or Welcome back, Dorkface!
I'm trying to use this code inside the header template so I can cause the REGISTER button at the top of the page to disappear when a registered user is logged in, and another button to appear instead. When I inserted the code and tested it, I got some VERY strange results... editing the code various ways caused different strange results, but not what I was expecting. Part of the PHP code would be printed out instead, the table cell would show up above the row of menu items, and the background would be neon green, etc. I've programmed in PHP before but haven't played with templates yet. How can I utilize code in the them? Thanks! |
#2
|
||||
|
||||
It's not advisable to do so.
The "chunk templates" are parsed into a kind of "chunked buffered output" using the powerful 'eval()'. If you have a previously filled variable, set inside a script, then you can use that variable inside the tempate, and it will be automatically "expanded" like a normal 'string' would be. By starting to add actual PHP code, you should expect random results. Do the PHP coding inside the relevant scripts, storing data into a variable, then place the variable name including the '$' character inside the template. It will get "expanded", outputting your dynamic content. Study a few of the smaller hacks on this website, and you should get the idea quickly on how the system works. |
#3
|
||||
|
||||
parsing php-code isn't possible in templates, except the template phpinclude.
you may want to install logicians conditionals in templates hack, for this things that you want to have... |
#4
|
|||
|
|||
Thanks! I'll probably put the script elsewhere and store the html tag in a variable for the template to expand. Sounds easy enough!
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|