PDA

View Full Version : Mini Mods - v3arcade: Set Start Category ID


rjordan
04-11-2007, 10:00 PM
This will allow you to set the initial category when entering v3arcade. I had wanted to make the initial category selectable from the AdminCP, but for the time being this will work.

Please note the following:

This is a very simple change. Feel free to modify it as you see fit and redistribute according to the v3arcade license. This means it can only be distributed where v3arcade can be legally distributed.
v3arcade v1.0.7 is required for this modification.Files required to be changed: 1 (v3arcade.php)
Time for modification: < 1 minute


In v3arcade.php, find:

// Now, let's get the games.
$vbulletin->input->clean_array_gpc('r', array(
'categoryid' => TYPE_INT
));




Below this, add the following:

// *** BEGIN: SET START CATEGORY IN V3ARCADE *** //
if(empty($vbulletin->GPC['categoryid']))
{
$vbulletin->GPC['categoryid'] = 1;
}
// *** END: SET START CATEGORY IN V3ARCADE *** //




Change the line above to the category ID that you want the arcade to open into by default.

Littlerocket
04-12-2007, 12:03 AM
Thanks for this bit of code. Been looking for this for a while.

HMBeaty
04-12-2007, 12:12 AM
Just something else to try, if all else fails...

https://vborg.vbsupport.ru/showthread.php?t=141214

txsbmw
06-14-2007, 01:09 PM
i tried this and am wanting it to point to my All category which appears to be cat 1, however it also appears that the Misc. category is 1 as well so instead of it going to all it is going to Misc.

txsbmw
06-14-2007, 02:14 PM
LOL nevermind figured out there was a - in front of the 1 for the All category.