Lines Matching refs:child
202 foreach ($childGroup as $child) {
203 if (!$child instanceof Component) {
208 if ($isBaseComponent($child)) {
209 $components[] = $child;
244 foreach ($this->select($componentName) as $child) {
245 if ($isBaseComponent($child)) {
246 return $child;
255 foreach ($childGroup as $child) {
256 if ($isBaseComponent($child)) {
257 return $child;
312 foreach ($this->children() as $child) {
313 if ($child instanceof Property && 'PRODID' !== $child->name) {
316 $newChildren[] = clone $child;
317 } elseif ($child instanceof Component && 'VTIMEZONE' !== $child->name) {
320 …if ('VEVENT' === $child->name && (isset($child->{'RECURRENCE-ID'}) || isset($child->RRULE) || isse…
322 $uid = (string) $child->UID;
327 $recurringEvents[$uid][] = clone $child;
329 $recurringEvents[$uid] = [clone $child];
331 } elseif ('VEVENT' === $child->name && $child->isInTimeRange($start, $end)) {
332 $newChildren[] = $stripTimezones(clone $child);
441 foreach ($this->children() as $child) {
442 if ($child instanceof Component) {
445 if (!in_array($child->name, ['VEVENT', 'VTODO', 'VJOURNAL'])) {
448 $componentTypes[] = $child->name;
450 $uid = (string) $child->UID;
451 $isMaster = isset($child->{'RECURRENCE-ID'}) ? 0 : 1;