@@ -28,7 +28,8 @@ class DateIcalIcalcreatorParser extends DateIcalFeedsParser {
),
'dtstart'=>array(
'name'=>'Date start',
'description'=>'Start time for the feed item. If also using the "Date end" source, this MUST come before it in the mapping, due to the way some iCal feeds are formatted.',
'description'=>'Start time for the feed item.
If also using the "Date end" source, this MUST come before it in the mapping, due to the way iCal feeds are formatted.',
'date_ical_parse_handler'=>'formatDateTime',
),
'dtend'=>array(
...
...
@@ -36,6 +37,13 @@ class DateIcalIcalcreatorParser extends DateIcalFeedsParser {
'description'=>'End time for the feed item.',
'date_ical_parse_handler'=>'formatDateTime',
),
'rrule'=>array(
'name'=>'Repeat rule',
'description'=>'Describes when and how often this calendar component should repeat.
The date field for the target node must be configrred to support repeating dates, using the Date Repeat Field module (a submodule of Date).
When using this source field, it MUST come after Date start (and Date end, if used) in the mapping.',
'date_ical_parse_handler'=>'formatRrule',
),
'uid'=>array(
'name'=>'UID',
'description'=>'UID of feed item',
...
...
@@ -159,12 +167,12 @@ class DateIcalIcalcreatorParser extends DateIcalFeedsParser {