本文整理汇总了PHP中Sabre\VObject\Component\VCalendar::expand方法的典型用法代码示例。如果您正苦于以下问题:PHP VCalendar::expand方法的具体用法?PHP VCalendar::expand怎么用?PHP VCalendar::expand使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sabre\VObject\Component\VCalendar
的用法示例。
在下文中一共展示了VCalendar::expand方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: importEvents
private function importEvents(Calendar $calendar, VCalendar $document)
{
// Prepare by deleting all existing events
foreach ($calendar->getEvents() as $event) {
$this->getEntityManager()->remove($event);
}
$calendar->getEvents()->clear();
// Abort if there is no events at all
if (!$document->VEVENT) {
return;
}
// First, import only originals, because we want to save RRULE before it is destroyed when expanding
$originals = [];
foreach ($document->VEVENT as $vevent) {
if (!$vevent->__get('RECURRENCE-ID')) {
$event = $this->importEvent($calendar, $vevent);
$originals[$event->getUid()] = $event;
}
}
// Expand repetitions 2 month in the past and 1 year in the future
$now = Utility::getNow();
$start = $now->sub(new \DateInterval('P2M'));
$end = $now->add(new \DateInterval('P1Y'));
// Then we expand recurent rules
$expandedDocument = $document->expand($start, $end);
// Abort if there is no repetitions at all
if (!$expandedDocument->VEVENT) {
return;
}
// Finally re-import, but this time only the recurrent things
foreach ($expandedDocument->VEVENT as $vevent) {
$original = $this->findOriginal($originals, $vevent);
if ($original) {
$repetition = $this->importEvent($calendar, $vevent);
$repetition->setOriginal($original);
}
}
}