Log in

View Full Version : Breadcrumbs for Modification


Impreza04
04-16-2006, 12:55 PM
Would it be possible for someone to explain how to get my mod to create breadcrumbs...
I'm surpirsed there isnt a tut for it..

So far i've only worked out that
$navbits = array(test,test);

Creates
Forums > test > test

But the links are 0 & 1..

Help is appreciated

Adrian Schneider
04-16-2006, 05:21 PM
This is how I do it...

// Path => Title
$navbits = array(
'https://vborg.vbsupport.ru/forumdisplay.php?f=109' => 'vB3.5 Modifications',
'https://vborg.vbsupport.ru/forumdisplay.php?f=111' => 'vB3.5 Modification Questions',
'https://vborg.vbsupport.ru/showthread.php?t=113164' => 'Breadcrumbs for Modification',
'Reply to Thread'
);

Of course it should all be variables, but you get the idea. Be sure to pass the sessionhash through each page if you want to keep that functionality working.

Impreza04
04-16-2006, 05:29 PM
Thanks alot :)