Admin - fix some more missing command history

This commit is contained in:
nathangray 2019-04-09 11:45:53 -06:00
parent ff120e64da
commit 9ec214160a
3 changed files with 33 additions and 3 deletions

View File

@ -1131,7 +1131,7 @@ abstract class admin_cmd
_egw_log_exception($ex); _egw_log_exception($ex);
error_log(__METHOD__."(".array2string($data).") periodic execution failed: ".$ex->getMessage()); error_log(__METHOD__."(".array2string($data).") periodic execution failed: ".$ex->getMessage());
} }
$periodic->value = $value; $periodic->result = $value;
$periodic->save(); $periodic->save();
} }

View File

@ -68,8 +68,8 @@ class admin_cmd_account_app extends admin_cmd
$old_rights + array($apps) : $old_rights + array($apps) :
array_diff($old_rights, $apps); array_diff($old_rights, $apps);
$this->set = $new_rights; $this->set = Array('app' => $new_rights);
$this->old = $old_rights; $this->old = Array('app' => $old_rights);
if ($check_only) return true; if ($check_only) return true;
//echo "account=$this->account, account_id=$account_id, apps: ".implode(', ',$apps)."\n"; //echo "account=$this->account, account_id=$account_id, apps: ".implode(', ',$apps)."\n";
@ -103,4 +103,33 @@ class admin_cmd_account_app extends admin_cmd
return lang('%1 rights for %2 and applications %3',$this->allow ? lang('Grant') : lang('Remove'), return lang('%1 rights for %2 and applications %3',$this->allow ? lang('Grant') : lang('Remove'),
admin_cmd::display_account($this->account),implode(', ',$apps)); admin_cmd::display_account($this->account),implode(', ',$apps));
} }
/**
* Return (human readable) labels for keys of changes
*
* Reading them from admin.account template
*
* @return array
*/
function get_change_labels()
{
$labels = parent::get_change_labels();
$labels['app'] = 'Applications';
return $labels;
}
/**
* Return widget types (indexed by field key) for changes
*
* Used by historylog widget to show the changes the command recorded.
*/
function get_change_widgets()
{
$widgets = parent::get_change_widgets();
$widgets['app'] = 'select-app';
return $widgets;
}
} }

View File

@ -157,6 +157,7 @@ class admin_cmd_edit_group extends admin_cmd
unset($labels['${row}[run]']); unset($labels['${row}[run]']);
$labels['account_members'] = 'Members'; $labels['account_members'] = 'Members';
$labels['account_email'] = 'Email';
return $labels; return $labels;
} }