mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Add status icons in event tooltips
This commit is contained in:
parent
3dfd74768e
commit
ad6cfe4871
@ -826,7 +826,7 @@ class calendar_ui
|
||||
{
|
||||
$event['app_id'] .= ':'.$event['recur_date'];
|
||||
}
|
||||
$event['parts'] = implode(",\n",$this->bo->participants($event,true));
|
||||
$event['parts'] = implode(",\n",$this->bo->participants($event,false));
|
||||
$event['date'] = $this->bo->date2string($event['start']);
|
||||
|
||||
// Change dates
|
||||
|
@ -397,7 +397,6 @@ class calendar_uilist extends calendar_ui
|
||||
}
|
||||
foreach((array) $this->bo->search($search_params, !empty($col_filter) ? $col_filter : null) as $event)
|
||||
{
|
||||
$this->to_client($event);
|
||||
|
||||
if ($params['csv_export'])
|
||||
{
|
||||
@ -405,8 +404,7 @@ class calendar_uilist extends calendar_ui
|
||||
}
|
||||
else
|
||||
{
|
||||
$event['parts'] = implode(",\n",$this->bo->participants($event,true));
|
||||
$event['date'] = $this->bo->date2string($event['start']);
|
||||
$this->to_client($event);
|
||||
}
|
||||
|
||||
|
||||
|
@ -2978,6 +2978,7 @@ class calendar_uiviews extends calendar_ui
|
||||
$dayEvents[$day][$num]['whole_day']=true;
|
||||
}
|
||||
}
|
||||
$this->to_client($dayEvents[$day][$num]);
|
||||
}
|
||||
// check after every day if we have to increase $this->extraRows
|
||||
if(($this->extraRowsOriginal+$extraRowsToAdd) > $this->extraRows)
|
||||
|
Loading…
Reference in New Issue
Block a user