Ive written some custom software for a company for their needs of using vbulletin outside of vbulletin. This was pretty easy to do.
Basically you just:
require_once(VBULLETIN_PATH . 'global.php');and then you have access to the vbulletin object and can use it like: $vbulletin->userinfo();
I would like to port that app to CI as they now want to add a bunch of additional functionality and CI is the bomb. How do I use this method in CI to load vbulletin? I want it to be a global object like the rest of CI so I can have it autoloaded and access it from any controller using $this->vbulletin->xxx. This is a bit beyond my CI knowledge as Ive only used CI to work with CI 😊
Thanks!