_rel = $rel; if ($name != null) { $this->_orgName = new Zend_Gdata_Contacts_Extension_OrgName($name); } if ($title != null) { $this->_orgTitle= new Zend_Gdata_Contacts_Extension_OrgTitle($title); } } public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null) { $element = parent::getDOM($doc, $majorVersion, $minorVersion); $element->setAttribute('rel', $this->lookupNamespace('gd').'#'.$this->_rel); if ($this->_orgName != null) { $element->appendChild($this->_orgName->getDOM($element->ownerDocument)); } if ($this->_orgTitle != null) { $element->appendChild($this->_orgTitle->getDOM($element->ownerDocument)); } return $element; } /** * 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; $gdNamespacePrefix = $this->lookupNamespace('gd') . ':'; switch ($absoluteNodeName) { case $gdNamespacePrefix . 'orgName'; $orgName = new Zend_Gdata_Contacts_Extension_OrgName(); $orgName->transferFromDOM($child); $this->_orgName = $orgName; break; case $gdNamespacePrefix . 'orgTitle'; $orgTitle = new Zend_Gdata_Contacts_Extension_OrgTitle(); $orgTitle->transferFromDOM($child); $this->_orgTitle = $orgTitle; break; } } public function getValue() { return $this->_orgName->getValue(); } }