$today = format_date(time(), 'custom', 'Y-m-d');
$tomorrow = format_date(time() + (1 * 24 * 60 * 60), 'custom', 'Y-m-d');
$month = format_date(time(), 'custom', 'Y-m');

$dates[] = l(t('Tänään'), 'rauma/tapahtumakalenteri/sort/'. $today);
$dates[] = l(t('Huomenna'), 'rauma/tapahtumakalenteri/sort/'. $tomorrow);
$dates[] = l(t('Tällä viikolla'), 'rauma/tapahtumakalenteri/sort/'. $today .'--P7D');
$dates[] = l(t('Tässä kuussa'), 'rauma/tapahtumakalenteri/sort/'. $month);
print t('Tapahtumat') .': '. implode(' | ', $dates);
?>
Tapahtumia ei löytynyt.