mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 07:09:20 +01:00
Patch from Klaus Leithoff <kl-at-stylite.de> to better deal with a big number of groups in edit accounts
This commit is contained in:
parent
22508fffc1
commit
176554400a
@ -1275,6 +1275,27 @@
|
||||
$t->set_var($var);
|
||||
$t->parse('password_fields','form_passwordinfo',True);
|
||||
|
||||
// prepare the allGroups array for use with the checkbox-multiselect use
|
||||
$allGroupsBuff=array();
|
||||
while (list($key,$value) = each($allGroups))
|
||||
{
|
||||
$allGroupsBuff[$value['account_lid']]=$value['account_id'];
|
||||
}
|
||||
// sort alphabetical
|
||||
ksort($allGroupsBuff);
|
||||
$allGroupsSorted=array();
|
||||
while (list($key,$value) = each($allGroupsBuff))
|
||||
{
|
||||
$allGroupsSorted[$value]=$key;
|
||||
}
|
||||
//prepare the userGroups Array for use with the checkbox-multiselect use -> selarray
|
||||
$selarray=array();
|
||||
while (list($key,$value) = each($userGroups))
|
||||
{
|
||||
array_push($selarray,$value['account_id']);
|
||||
}
|
||||
$t->set_var('groups_select','<div id="groupselector">' .$GLOBALS['egw']->html->checkbox_multiselect('account_groups[]',$selarray,$allGroupsSorted,true,'',min(3+count($allGroupsSorted),10),' style="width: 300px; text-align:left" ').'</div>');
|
||||
/* KL 20061211 removed
|
||||
$groups_select = '';
|
||||
$primary_group_select = '';
|
||||
reset($allGroups);
|
||||
@ -1284,9 +1305,9 @@
|
||||
$groups_select .= '<input type="checkbox" name="account_groups[]" value="' . $value['account_id'] . '"';
|
||||
for ($i=0; $i<count($userGroups); $i++)
|
||||
{
|
||||
/* print
|
||||
"Los1:".$userData["account_id"].$userGroups[$i]['account_id']." :
|
||||
".$value['account_id']."<br>"; */
|
||||
// print
|
||||
//"Los1:".$userData["account_id"].$userGroups[$i]['account_id']." :
|
||||
//".$value['account_id']."<br>";
|
||||
if (@$userGroups[$i]['account_id'] == $value['account_id'])
|
||||
{
|
||||
$groups_select .= ' checked';
|
||||
@ -1294,7 +1315,7 @@
|
||||
}
|
||||
$groups_select .= '>' . $value['account_lid'] . "<br/>\n";
|
||||
}
|
||||
|
||||
*/
|
||||
|
||||
if (!$userData['account_primary_group'])
|
||||
{
|
||||
@ -1348,9 +1369,10 @@
|
||||
}
|
||||
|
||||
$var = Array(
|
||||
'groups_select'
|
||||
=> '<div id="groupselector">' .
|
||||
"\n".$groups_select. '</div>' . "\n",
|
||||
// KL 20061211 groups_select is already set
|
||||
//'groups_select'
|
||||
//=> '<div id="groupselector">' .
|
||||
//"\n".$groups_select. '</div>' . "\n",
|
||||
'primary_group_select'
|
||||
=> '<select
|
||||
name="account_primary_group">'."\n".$primary_group_select.'</
|
||||
|
Loading…
Reference in New Issue
Block a user