show user who has created event

This commit is contained in:
Uwe Steinmann 2022-03-28 19:10:03 +02:00
parent 2134754e91
commit 58de462ff5

View File

@ -93,6 +93,15 @@ class SeedDMS_View_Calendar extends SeedDMS_Theme_Style {
'required'=>$strictformcheck
)
);
if($euser = $dms->getUser($event['userID'])) {
$this->formField(
getMLText("user"),
array(
'element'=>'plain',
'value'=>htmlspecialchars($euser->getFullName())
)
);
}
$this->contentContainerEnd();
$this->formSubmit("<i class=\"fa fa-save\"></i> ".getMLText('save'));
?>