Merge remote-tracking branch 'upstream/4.3' into 4.3-master-2013-09-25-01-46-57
[civicrm-core.git] / templates / CRM / Core / Calendar / ICal.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.4 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2013 |
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 *}
26 BEGIN:VCALENDAR
27 VERSION:2.0
28 PRODID:-//CiviCRM//NONSGML CiviEvent iCal//EN
29 X-WR-TIMEZONE:{$timezone}
30 METHOD:PUBLISH
31 {foreach from=$events key=uid item=event}
32 BEGIN:VEVENT
33 UID:{$event.uid}
34 SUMMARY:{$event.title|crmICalText}
35 {if $event.description}
36 DESCRIPTION:{$event.description|crmICalText}
37 {/if}
38 {if $event.event_type}
39 CATEGORIES:{$event.event_type|crmICalText}
40 {/if}
41 CALSCALE:GREGORIAN
42 {if $event.start_date}
43 DTSTAMP;VALUE=DATE-TIME:{$event.start_date|crmICalDate}
44 DTSTART;VALUE=DATE-TIME:{$event.start_date|crmICalDate}
45 {else}
46 DTSTAMP;VALUE=DATE-TIME:{$smarty.now|date_format:'%Y-%m-%d %H:%M:%S'|crmICalDate}
47 {/if}
48 {if $event.end_date}
49 DTEND;VALUE=DATE-TIME:{$event.end_date|crmICalDate}
50 {else}
51 DTEND;VALUE=DATE-TIME:{$event.start_date|crmICalDate}
52 {/if}
53 {if $event.is_show_location EQ 1 && $event.location}
54 LOCATION:{$event.location|crmICalText}
55 {/if}
56 {if $event.contact_email}
57 ORGANIZER:MAILTO:{$event.contact_email|crmICalText}
58 {/if}
59 {if $event.url}
60 URL:{$event.url}
61 {/if}
62 END:VEVENT
63 {/foreach}
64 END:VCALENDAR