0) { $svgIcon = '\' alt="'._t('HISTORY').'">'; $curday = ''; foreach ($fiches as $fiche) { list($day, $time) = explode(' ', $fiche['date_maj_fiche']); if ($day != $curday) { if ($curday) { echo "
\n"; } echo ''.date('d.m.Y', strtotime($day)).' :
'."\n"; $curday = $day; } $icon = getCustomValueForEntry( $param['icon'], $param['iconfield'], $fiche, '' ); if (!empty($icon)) { $fiche['bf_titre'] = ' '.$fiche['bf_titre']; } $color = getCustomValueForEntry( $param['color'], $param['colorfield'], $fiche, '' ); if (!empty($color)) { $fiche['bf_titre'] = ' '.$fiche['bf_titre']; } // echo entry echo '
' .'' // handler revisions .$svgIcon.' '.$time.' ' .'' .$fiche['bf_titre'].' par ' .((isset($fiche['external-data'])) ? ''.$fiche['owner'].'' : $this->wiki->Format($fiche['owner'])).'
'."\n"; } } else { echo _t('BAZ_NO_ENTRY_FOR_THIS_PERIOD'); } ?>