'text/vcard', 'version' => '3.0'), // array('contentType' => 'text/vcard', 'version' => '4.0'), ); } $this->supportedData = $supportedData; } /** * Serializes the property in a DOMDocument * * @param DAV\Server $server * @param \DOMElement $node * @return void */ public function serialize(DAV\Server $server,\DOMElement $node) { $doc = $node->ownerDocument; $prefix = isset($server->xmlNamespaces[CardDAV\Plugin::NS_CARDDAV]) ? $server->xmlNamespaces[CardDAV\Plugin::NS_CARDDAV] : 'card'; foreach($this->supportedData as $supported) { $caldata = $doc->createElementNS(CardDAV\Plugin::NS_CARDDAV, $prefix . ':address-data-type'); $caldata->setAttribute('content-type',$supported['contentType']); $caldata->setAttribute('version',$supported['version']); $node->appendChild($caldata); } } }