mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
Make delete buttons readonly for account owner and entry field. Additionally, clean up some warnings in the code
This commit is contained in:
parent
621d6d46f4
commit
d1e3d3b0c0
@ -80,7 +80,7 @@ class mail_acl
|
|||||||
$content['mailbox'] = $mailbox;
|
$content['mailbox'] = $mailbox;
|
||||||
$acl = (array)$this->retrive_acl($mailbox, $msg);
|
$acl = (array)$this->retrive_acl($mailbox, $msg);
|
||||||
$n = 1;
|
$n = 1;
|
||||||
foreach ($acl as $keys => $value)
|
foreach ($acl as $key => $value)
|
||||||
{
|
{
|
||||||
$virtuals = array_pop(array_values((array)$value));
|
$virtuals = array_pop(array_values((array)$value));
|
||||||
$rights = array_shift(array_values((array)$value));
|
$rights = array_shift(array_values((array)$value));
|
||||||
@ -104,23 +104,23 @@ class mail_acl
|
|||||||
{
|
{
|
||||||
$content['grid'][$n]['acl'] = 'custom';
|
$content['grid'][$n]['acl'] = 'custom';
|
||||||
}
|
}
|
||||||
if (($account_id = $this->mail_bo->icServer->getMailBoxAccountId($keys)))
|
if (($account_id = $this->mail_bo->icServer->getMailBoxAccountId($key)))
|
||||||
{
|
{
|
||||||
$content['grid'][$n++]['acc_id'] = $account_id;
|
$content['grid'][$n++]['acc_id'] = $account_id;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$content['grid'][$n++]['acc_id'] = $keys;
|
$content['grid'][$n++]['acc_id'] = $key;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//error_log(__METHOD__."() acl=".array2string($acl).' --> grid='.array2string($content['grid']));
|
//error_log(__METHOD__."() acl=".array2string($acl).' --> grid='.array2string($content['grid']));
|
||||||
}
|
}
|
||||||
//Set the acl entry in the last row with lrs as default ACL
|
//Set the acl entry in the last row with lrs as default ACL
|
||||||
array_push($content['grid'], array(
|
array_push($content['grid'], array(
|
||||||
'acc_id'=>'',
|
'acc_id'=>'',
|
||||||
'acl_l' => true,
|
'acl_l' => true,
|
||||||
'acl_r' => true,
|
'acl_r' => true,
|
||||||
'acl_s' => true));
|
'acl_s' => true));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -180,7 +180,18 @@ class mail_acl
|
|||||||
}
|
}
|
||||||
$readonlys = $sel_options = array();
|
$readonlys = $sel_options = array();
|
||||||
$sel_options['acl'] = $this->aclRightsAbbrvs;
|
$sel_options['acl'] = $this->aclRightsAbbrvs;
|
||||||
$readonlys['grid']['delete[1]'] = true;
|
|
||||||
|
//Make the delete buttons readonly for entry filed and account owner
|
||||||
|
foreach($content['grid'] as $key => $field)
|
||||||
|
{
|
||||||
|
if ($field['acc_id'] == $this->mail_bo->icServer->acc_name ||
|
||||||
|
$field['acc_id'][0] == $this->mail_bo->icServer->acc_name)
|
||||||
|
{
|
||||||
|
$readonlys['grid']['delete['.$key.']'] = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$readonlys['grid']['delete['.count($content['grid']).']'] = true;
|
||||||
|
|
||||||
$preserv ['mailbox'] = $content['mailbox'];
|
$preserv ['mailbox'] = $content['mailbox'];
|
||||||
$content['msg'] = $msg;
|
$content['msg'] = $msg;
|
||||||
$content['grid']['account_type'] = $this->mail_bo->icServer->supportsGroupAcl() ? 'both' : 'accounts';
|
$content['grid']['account_type'] = $this->mail_bo->icServer->supportsGroupAcl() ? 'both' : 'accounts';
|
||||||
@ -237,7 +248,10 @@ class mail_acl
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (is_array($validator)) return $validator;
|
if (is_array($validator))
|
||||||
|
{
|
||||||
|
return $validator;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -359,9 +373,9 @@ class mail_acl
|
|||||||
* @param String $mailbox folder name that needs to be edited
|
* @param String $mailbox folder name that needs to be edited
|
||||||
* @param String $Identifier The identifier to set.
|
* @param String $Identifier The identifier to set.
|
||||||
* @param Array $options Additional options:
|
* @param Array $options Additional options:
|
||||||
* - rights: (string) The rights to alter or set.
|
* - rights: (string) The rights to alter or set.
|
||||||
* - action: (string, optional) If 'add' or 'remove', adds or removes the
|
* - action: (string, optional) If 'add' or 'remove', adds or removes the
|
||||||
* specified rights. Sets the rights otherwise.
|
* specified rights. Sets the rights otherwise.
|
||||||
* @param Boolean $recursive boolean flag FALSE|TRUE. If it is FALSE, only the folder take in to account, but in case of TRUE
|
* @param Boolean $recursive boolean flag FALSE|TRUE. If it is FALSE, only the folder take in to account, but in case of TRUE
|
||||||
* the mailbox including all its subfolders will be considered.
|
* the mailbox including all its subfolders will be considered.
|
||||||
* @param String $msg message
|
* @param String $msg message
|
||||||
|
Loading…
Reference in New Issue
Block a user