Idee: ALLDAY Events so darstellen wie in iCal (als Balken) Stand: im month_large.tpl template ist die Ansicht definiert. //{ALLDAY}// ist der Platzhalter für die ALLDAY events. Die Events selbst werden leider direkt von functions/template.php eingefügt. Nach //$switch['ALLDAY']// suchen if ($master_array[$daylink]) { if ($type != 'small') { foreach ($master_array[$daylink] as $event_times) { foreach ($event_times as $uid => $val) { $event_calno = $val['calnumber']; $event_calno = (($event_calno - 1) % $unique_colors) + 1; if (!isset($val['event_start'])) { if ($type == 'large') { $switch['ALLDAY'] .= '
'; $switch['ALLDAY'] .= openevent($daylink, $uid, $val, $month_event_lines, 15, 'psf'); $switch['ALLDAY'] .= '
'; } else { $switch['ALLDAY'] .= ' '; } } else { $start2 = date($timeFormat_small, $val['start_unixtime']); if ($type == 'large') { $switch['EVENT'] .= '
'; $switch['EVENT'] .= openevent($daylink, $uid, $val, $month_event_lines, 10, 'ps3', "$start2 ").'
'; $switch['EVENT'] .= '
'; } else { $switch['EVENT'] = ' '; } } } } } } $switch['EVENT'] = (isset($switch['EVENT'])) ? $switch['EVENT'] : ''; $switch['ALLDAY'] = (isset($switch['ALLDAY'])) ? $switch['ALLDAY'] : '';