Custom Templates
If you create custom vBulletin based files that utilize custom created templates within your forum installation, there are a few tricks to get them to work with vBulletin 4. Prior to vBulletin 4, you were able to use the following code to get vBulletin to evaluate the custom template for your script.
eval('print_output("' . fetch_template('myCustomTemplate') . '");');
With vBulletin 4, the same thing can be accomplished with the following
...