The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
I read threads that say hacking vBulletin will alter support privileges and yet I see others that say using php includes is not proper either considering the vBulletin template system. What I want to know is this;
Where are there any guides, tutorials or requirements on creating products and plugins? Which is the better method to use? products and plugins or phpincludes? I've got code that switches content based on browser written in PHP and should work fine as an include but standard phpinclude methods dont work. Any direction would be appreciated. |
#2
|
|||
|
|||
![]()
Good question. Same question here. They told me that we have to make a mod but standards to beggin a mode are not easy and I´m still trying to figure it out.
|
#3
|
|||
|
|||
![]()
You can do PHP includes in products/plugins. Example:
Code:
Hook location: global_start PHP code: require_once('/path/to/file.php'); Code:
Hook location: global_start PHP code: ob_start(); require_once('/path/to/file.php'); $some_output = ob_get_contents(); ob_end_clean(); Otherwise, choose a more appropriate hook location. More information can be found at the following links: |
#4
|
|||
|
|||
![]()
Thank you, finally!
I´ll read it carefully. |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|