Forum Moderators: rogerd
I think you'd find modifying the vBulletin code straightforward if you are used to phpBB.
[vbulletin.com...]
They have incorporated coding practices into their manual, showing you how to add your own custom coding.
Most of what you will do will never enter the actual PHP files. You will do a lot of editing in templates, including adding PHP code to them. These templates are stored in your database, so an upgrade doesn't affect your customization.
They have also incorporated an "if/else" method using a variation on XML style coding:
<if condition=$some_variable>
.....
<else />
</if>
It's all pretty compartmentalized, pretty easy to tweak (endlessly.)