Esempio n. 1
0
 protected function takeChildFromDOM($child)
 {
     $absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
     switch ($absoluteNodeName) {
         case $this->lookupNamespace('atom') . ':' . 'content':
             $content = new Zend_Gdata_App_Extension_Content();
             $content->transferFromDOM($child);
             $this->_content = $content;
             break;
         case $this->lookupNamespace('atom') . ':' . 'published':
             $published = new Zend_Gdata_App_Extension_Published();
             $published->transferFromDOM($child);
             $this->_published = $published;
             break;
         case $this->lookupNamespace('atom') . ':' . 'source':
             $source = new Zend_Gdata_App_Extension_Source();
             $source->transferFromDOM($child);
             $this->_source = $source;
             break;
         case $this->lookupNamespace('atom') . ':' . 'summary':
             $summary = new Zend_Gdata_App_Extension_Summary();
             $summary->transferFromDOM($child);
             $this->_summary = $summary;
             break;
         case $this->lookupNamespace('app') . ':' . 'control':
             $control = new Zend_Gdata_App_Extension_Control();
             $control->transferFromDOM($child);
             $this->_control = $control;
             break;
         default:
             parent::takeChildFromDOM($child);
             break;
     }
 }
Esempio n. 2
0
 public function testControlWithDraftToAndFromStringShouldMatch()
 {
     $draft = new Zend_Gdata_App_Extension_Draft('yes');
     $this->control->draft = $draft;
     $controlXml = $this->control->saveXML();
     $newControl = new Zend_Gdata_App_Extension_Control();
     $newControl->transferFromXML($controlXml);
     $newControlXml = $newControl->saveXML();
     $this->assertEquals($newControlXml, $controlXml);
     $this->assertEquals('yes', $newControl->draft->text);
 }
Esempio n. 3
0
 protected function takeChildFromDOM($child)
 {
     $absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
     switch ($absoluteNodeName) {
         case $this->lookupNamespace('yt') . ':' . 'state':
             $state = new Zend_Gdata_YouTube_Extension_State();
             $state->transferFromDOM($child);
             $this->_state = $state;
             break;
         default:
             parent::takeChildFromDOM($child);
             break;
     }
 }
Esempio n. 4
0
 /**
  * Given a child DOMNode, tries to determine how to map the data into
  * object instance members.  If no mapping is defined, Extension_Element
  * objects are created and stored in an array.
  *
  * @param DOMNode $child The DOMNode needed to be handled
  */
 protected function takeChildFromDOM($child)
 {
     $absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
     switch ($absoluteNodeName) {
         case $this->lookupNamespace('sc') . ':' . 'excluded_destination':
             $this->_destinations[$child->getAttribute('dest')] = self::DEST_MODE_EXCLUDED;
             break;
         case $this->lookupNamespace('sc') . ':' . 'required_destination':
             $this->_destinations[$child->getAttribute('dest')] = self::DEST_MODE_REQUIRED;
             break;
         default:
             parent::takeChildFromDOM($child);
     }
 }