copyright and version fixes
[civicrm-core.git] / templates / CRM / Core / Calendar / ICal.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
819d0d41 3 | CiviCRM version 4.5 |
6a488035 4 +--------------------------------------------------------------------+
819d0d41 5 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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*}
26BEGIN:VCALENDAR
27VERSION:2.0
28PRODID:-//CiviCRM//NONSGML CiviEvent iCal//EN
29X-WR-TIMEZONE:{$timezone}
30METHOD:PUBLISH
31{foreach from=$events key=uid item=event}
32BEGIN:VEVENT
33UID:{$event.uid}
34SUMMARY:{$event.title|crmICalText}
35{if $event.description}
36DESCRIPTION:{$event.description|crmICalText}
37{/if}
38{if $event.event_type}
39CATEGORIES:{$event.event_type|crmICalText}
40{/if}
41CALSCALE:GREGORIAN
42{if $event.start_date}
43DTSTAMP;VALUE=DATE-TIME:{$event.start_date|crmICalDate}
44DTSTART;VALUE=DATE-TIME:{$event.start_date|crmICalDate}
45{else}
46DTSTAMP;VALUE=DATE-TIME:{$smarty.now|date_format:'%Y-%m-%d %H:%M:%S'|crmICalDate}
47{/if}
48{if $event.end_date}
49DTEND;VALUE=DATE-TIME:{$event.end_date|crmICalDate}
50{else}
51DTEND;VALUE=DATE-TIME:{$event.start_date|crmICalDate}
52{/if}
53{if $event.is_show_location EQ 1 && $event.location}
54LOCATION:{$event.location|crmICalText}
55{/if}
56{if $event.contact_email}
57ORGANIZER:MAILTO:{$event.contact_email|crmICalText}
58{/if}
59{if $event.url}
60URL:{$event.url}
61{/if}
62END:VEVENT
63{/foreach}
64END:VCALENDAR