Hide Users - RE Create "Super" admin
Hi Pal:
1°
Check in the files the query Sql about showing users in directories/list etc, and then modify the select to only show specifieds users. I'll try to explain me better.
when Osticket generates a query and show All registers, it's doing the follow:
$sql= Select * from table... when abcde1=jklmno2
here you must add a expression which made the query more especific.
example:
$sql = SELECT * FROM '.GROUP_TABLE.' WHERE isactive=0;
make this :
$sql = SELECT * FROM '.GROUP_TABLE.' WHERE isactive=1 AND isadmin=0 ;
this only show users that could be: manager/staff/admin.
Understanding that the admin in the group users, is not the same admin (SuperAdmin) which in the Staff_Table has the field "isadmin" with data=1
this hint let's you create diferents users, creating fields in the staff_table.
search in Google 4 Notepad++.
is excellent 4 search in multiple files simultaneously. i use it and is great!.
Sorry 4 my translation, i did my best possible.
Regards from Chile!
Woywood