23 lines
1.1 KiB
Plaintext
Executable File
23 lines
1.1 KiB
Plaintext
Executable File
BEGIN:VCALENDAR
|
|
X-WR-CALNAME:<?php echo APP_NAME."\n"; ?>
|
|
X-WR-CALDESC:Upcoming Parties
|
|
PRODID:-//MozillaPartyTool//calendar//EN
|
|
VERSION:2.0
|
|
CALSCALE:GREGORIAN
|
|
METHOD:PUBLISH
|
|
<?php foreach($events as $event):
|
|
if ($event['Feeds']['canceled']) continue; ?>
|
|
BEGIN:VEVENT
|
|
UID:<?php echo APP_BASE.$html->url('/parties/view/'.$event['Feeds']['id'])."\n"; ?>
|
|
DTSTAMP:<?php echo gmdate('Ymd\This\Z', $event['Feeds']['date'])."\n"; ?>
|
|
LOCATION:<?php echo $event['Feeds']['lat'].'\, '.$event['Feeds']['long'].'('.$event['Feeds']['address'].")\n"; ?>
|
|
SUMMARY:<?php echo $event['Feeds']['name']."\n"; ?>
|
|
DTSTART:<?php echo gmdate('Ymd\This', $event['Feeds']['date'])."\n"; ?>
|
|
DURATION:PT<?php echo $event['Feeds']['duration']; ?>H
|
|
URL:<?php echo APP_BASE.$html->url('/parties/view/'.$event['Feeds']['id'])."\n"; ?>
|
|
STATUS:<?php echo (($event['Feeds']['confirmed'] == 1) ? "CONFIRMED" : "TENTATIVE")."\n"; ?>
|
|
DESCRIPTION: <?php echo $event['Feeds']['name'].'\n '.$event['Feeds']['address'].'\n '.date('h:ia', $event['Feeds']['date']).'\n '.$event['Feeds']['notes'].'\n'."\n"; ?>
|
|
END:VEVENT
|
|
<?php endforeach; ?>
|
|
END:VCALENDAR
|