I have same question about userlinks, i want to have multilevel as in adminlinks, itried to copie a function that is in admin to user as well as rss files, but the resultat is not good.
If i put this in userlinks
Code
/* Users/Groups link */
$menu[] = array('users', _NAV_USERS, '#',
array(
array(null, _NAV_ADMINGROUPS, pnModURL('Groups', 'admin'),
array(
array(null, _NAV_GROUPSETTINGS, pnModURL('Groups', 'admin', 'modifyconfig'))
)
),
array(null, _NAV_ADMINUSERS, pnModURL('Users', 'admin'),
array(
array(null, _NAV_USERSMANAGER, pnModURL('Users', 'admin', 'modifyconfig')),
array(null, _NAV_USERSPROPERTIES, pnModURL('Profile', 'admin', 'view'))
)
),
array(null, _NAV_SEARCHUSERS, pnModURL('Users', 'admin', 'search')),
array(null, _NAV_CREATEUSER, pnModURL('Users', 'admin', 'new'))
)
);
$menu[] = array('users', _NAV_USERS, '#',
array(
array(null, _NAV_ADMINGROUPS, pnModURL('Groups', 'admin'),
array(
array(null, _NAV_GROUPSETTINGS, pnModURL('Groups', 'admin', 'modifyconfig'))
)
),
array(null, _NAV_ADMINUSERS, pnModURL('Users', 'admin'),
array(
array(null, _NAV_USERSMANAGER, pnModURL('Users', 'admin', 'modifyconfig')),
array(null, _NAV_USERSPROPERTIES, pnModURL('Profile', 'admin', 'view'))
)
),
array(null, _NAV_SEARCHUSERS, pnModURL('Users', 'admin', 'search')),
array(null, _NAV_CREATEUSER, pnModURL('Users', 'admin', 'new'))
)
);
rhe menu is show but not in multilevel but only in one level so i can see all links at same time. i think the problem is in CSS but where exactly?
Another thing is it possible to do this with userlinks
I want that guest have menu A from userlinks
Members in group A have menu B from userlinks
members in group B have menu C from userlinks
