Awesome guide. It has helped me move forward a bit, but I still don't have it all down yet. If anyone has this down pat, I'd be interested in some more tutorials that show old 3.x code and then below shows the 4.x code. This way I can test myself and see how well I have it down.
In the meantime though, is the new rendering needed for redirects? For example:
Code:
$vbulletin->url = "misc.php?do=editform&fid=$fid";
eval(print_standard_redirect('redirect_insertform', true));
I tried the following:
Code:
$templater = vB_Template::create('redirect_insertform');
$templater->register_page_templates();
$templater->register('redirect', $vbulletin->url);
print_standard_redirect($templater->render());
That didn't work though, it seems to be cutting off everything after misc.php. Maybe I need to register the $fid?