Пример #1
0
 /**
  * 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('yt') . ':' . 'state':
         $state = new State();
         $state->transferFromDOM($child);
         $this->_state = $state;
         break;
     default:
         parent::takeChildFromDOM($child);
         break;
     }
 }