12345678910111213141516171819202122 |
- <?php
- if (empty($method)) {
- $method = 'PUBLISH';
- }
- print "BEGIN:VCALENDAR\r\n";
- print "VERSION:2.0\r\n";
- print "METHOD:$method\r\n";
- if (!empty($title)) {
- print "X-WR-CALNAME;VALUE=TEXT:$title\r\n";
- }
- print "PRODID:-//Drupal iCal API//EN\r\n";
- print "$rows";
- print "END:VCALENDAR\r\n";
|