/** * Creates individual Entry objects of the appropriate type and * stores them in the $_entry array based upon DOM data. * * @param DOMNode $child The DOMNode to process */ protected function takeChildFromDOM($child) { $absoluteNodeName = $child->namespaceURI . ':' . $child->localName; switch ($absoluteNodeName) { case $this->lookupNamespace('gd') . ':' . 'entryLink': $entryLink = new EntryLink(); $entryLink->transferFromDOM($child); $this->_entryLink = $entryLink; break; default: parent::takeChildFromDOM($child); break; } }
/** * Creates individual Entry objects of the appropriate type and * stores them as members of this entry based upon DOM data. * * @param DOMNode $child The DOMNode to process */ protected function takeChildFromDOM($child) { $absoluteNodeName = $child->namespaceURI . ':' . $child->localName; switch ($absoluteNodeName) { case $this->lookupNamespace('gd') . ':' . 'attendeeStatus': $attendeeStatus = new AttendeeStatus(); $attendeeStatus->transferFromDOM($child); $this->_attendeeStatus = $attendeeStatus; break; case $this->lookupNamespace('gd') . ':' . 'attendeeType': $attendeeType = new AttendeeType(); $attendeeType->transferFromDOM($child); $this->_attendeeType = $attendeeType; break; case $this->lookupNamespace('gd') . ':' . 'entryLink': $entryLink = new EntryLink(); $entryLink->transferFromDOM($child); $this->_entryLink = $entryLink; break; default: parent::takeChildFromDOM($child); break; } }