11
a) preferences.php
For system preferences:
case 'group_multi':
$ele = new XoopsFormSelectGroup($title, $config[$i]->getVar('conf_name'), true, $config[$i]->getConfValueForOutput(), 5, true);
break;
For module preferences:
case 'group_multi':
include_once XOOPS_ROOT_PATH.'/class/xoopslists.php';
$ele = new XoopsFormSelectGroup($title, $config[$i]->getVar('conf_name'), false, $config[$i]->getConfValueForOutput(), 5, true);
break;
For module preferences guests are excluded for system preferences not.
Rest to follow...