Merge pull request #4726 from atif-shaikh/CRM-5039
[civicrm-core.git] / templates / CRM / Core / Calendar / GData.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.6 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2014 |
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 <feed xmlns='http://www.w3.org/2005/Atom'
27 xmlns:gd='http://schemas.google.com/g/2005'>
28 <id>{crmURL p='civicrm/admin/event' q="reset=1&list=1&gData=1"}</id>
29 <title type='text'>{ts}CiviEvent Public Calendar{/ts}</title>
30 <subtitle type='text'>{ts}Listing of current and upcoming public events.{/ts}</subtitle>
31 <generator>CiviCRM</generator>
32 {foreach from=$events key=uid item=event}
33 <entry xmlns='http://www.w3.org/2005/Atom'
34 xmlns:gd='http://schemas.google.com/g/2005'>
35 <category scheme='http://schemas.google.com/g/2005#kind'
36 term='http://schemas.google.com/g/2005#event'></category>
37 <title type='text'>{$event.title}</title>
38 {if $event.description}
39 <content type='text'>{$event.description}</content>
40 {/if}
41 {if $event.contact_email}
42 <author>
43 <email>{$event.contact_email}</email>
44 </author>
45 {/if}
46 <gd:transparency
47 value='http://schemas.google.com/g/2005#event.opaque'>
48 </gd:transparency>
49 <gd:eventStatus
50 value='http://schemas.google.com/g/2005#event.confirmed'>
51 </gd:eventStatus>
52 {if $event.is_show_location EQ 1 && $event.location}
53 <gd:where valueString='{$event.location}'></gd:where>
54 {/if}
55 {if $event.start_date}
56 <gd:when startTime='{$event.start_date|crmICalDate:1}'
57 endTime='{$event.end_date|crmICalDate:1}'></gd:when>
58 {/if}
59 </entry>
60 {/foreach}
61 </feed>