The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
BBCode and variables
I am trying to create BBCode that will look up information from my DB. The forums already pull information that looks like this:
$forumInfo['AffiliateLink'] It is a table variable that is set by forum. Is there any way to use that type of link in BBCode? When I use it now it comes through as you see it above |
#2
|
|||
|
|||
You can't do that just by defining a bbcode, you'd need to write a plugin of some kind.
|
#3
|
|||
|
|||
A plugin is already written to bring the information INTO the forums. It's just the BBCode that I am trying to get working now.
In the templates I can use that just fine. --------------- Added [DATE]1347558765[/DATE] at [TIME]1347558765[/TIME] --------------- I better explain more... The BBCode is a set of HTML that I am using. I want to use it like this: [Advert=284]Program Name[/Advert] I have a bunch of HTML that takes the option and parameter and places it into the HTML appropriately. However - I have 1 piece of information it needs to get from the tables.. The AffiliateLink. that information is already defined and used in the templates. I'm just not sure how to get AT IT in the BBCode. --------------- Added [DATE]1347558854[/DATE] at [TIME]1347558854[/TIME] --------------- Added: It would be no different than trying to get at the PostID from within BBCode. How do I address that? |
#4
|
|||
|
|||
Quote:
But there is this mod: https://vborg.vbsupport.ru/showthread.php?t=264896 (which I'm surprised hasn't been more popular). It will let you use php in the bbcode definition, so you should be able to use your variables if they're global. One thing that I'm not sure of though is about caching. The final html code for a post is normally cached to avoid doing work (like the bbcode processing) over and over when it always comes out the same. But if you want to define a bbcode that you would expect to look different sometimes (for different users or something like that), then it might not work as expected. Then you might need to do something like use a str_replace() in a plugin at hook postbit_display_complete to insert your variable. Quote:
Edit: I missed this addition to your post: Quote:
Then it sounds like the mod I mentioned above might work for you. |
#5
|
|||
|
|||
That mod worked! thank you very much I had to re-formulate the bbcode a bit (i.e., lose the HTML and put it into a variable), because inserting the php in the middle did nothing However, once I figured that out - was easy.
Thanks again. |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|