Log in

View Full Version : PHP Includes and external php files


php4ever
03-30-2007, 12:10 PM
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.

alster
03-30-2007, 05:40 PM
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.

calorie
03-30-2007, 06:08 PM
You can do PHP includes in products/plugins. Example:

Hook location:
global_start

PHP code:
require_once('/path/to/file.php');

Here is an example if your PHP code prints output:

Hook location:
global_start

PHP code:
ob_start();
require_once('/path/to/file.php');
$some_output = ob_get_contents();
ob_end_clean();

Use global_start only if you want the code to run on most pages.
Otherwise, choose a more appropriate hook location.

More information can be found at the following links:

http://www.vbulletin.com/docs/search?q=plugin
http://www.vbulletin.com/docs/search?q=product

alster
03-30-2007, 06:30 PM
Thank you, finally!
I´ll read it carefully.