Home
last modified time | relevance | path

Searched refs:xmlNamespace (Results 1 – 9 of 9) sorted by relevance

/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/
H A DBaseDriverTest.php63 $p->xmlNamespace = 'http://purl.org/dc/elements/1.1/';
101 $p->xmlNamespace = 'http://www.w3.org/2005/Atom';
401 $p->xmlNamespace = 'http://schemas.google.com/g/2005';
415 $p->xmlNamespace = 'http://purl.org/dc/elements/1.1/';
450 $p->xmlNamespace = 'http://old.foo.example.org';
463 $p->xmlNamespace = 'http://new.foo.example.org';
484 $p->xmlNamespace = 'http://foo.example.org';
515 $p->xmlNamespace = 'http://foo.example.org';
528 $p->xmlNamespace = 'http://foo.example.org';
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/
H A DXmlDriver.php112 foreach ($elem->xpath('./xml-namespace') as $xmlNamespace) {
113 if (!isset($xmlNamespace->attributes()->uri)) {
117 if (isset($xmlNamespace->attributes()->prefix)) {
118 $prefix = (string) $xmlNamespace->attributes()->prefix;
123 $metadata->registerNamespace((string) $xmlNamespace->attributes()->uri, $prefix);
275 $pMetadata->xmlNamespace = (string) $colConfig->attributes()->namespace;
H A DAnnotationDriver.php200 $propertyMetadata->xmlNamespace = $annot->namespace;
217 $propertyMetadata->xmlNamespace = $annot->namespace;
H A DYamlDriver.php204 $pMetadata->xmlNamespace = (string) $colConfig['namespace'];
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/
H A DPropertyMetadata.php79 public $xmlNamespace; variable in JMS\\Serializer\\Metadata\\PropertyMetadata
226 $this->xmlNamespace,
274 $this->xmlNamespace,
H A DClassMetadata.php403 $discriminatorProperty->xmlNamespace = $this->xmlDiscriminatorNamespace;
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DXmlDeserializationVisitor.php285 $attributes = $data->attributes($metadata->xmlNamespace);
300 $enclosingElem = $data->children($metadata->xmlNamespace)->$name;
309 if ($metadata->xmlNamespace) {
310 $node = $data->children($metadata->xmlNamespace)->$name;
H A DXmlSerializationVisitor.php249 …teOnNode($this->currentNode, $metadata->serializedName, $node->nodeValue, $metadata->xmlNamespace);
290 … $this->setAttributeOnNode($this->currentNode, $key, $node->nodeValue, $metadata->xmlNamespace);
297 $namespace = null !== $metadata->xmlNamespace
298 ? $metadata->xmlNamespace
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/
H A DAbstractPropertyMetadataTest.php26 $metadata->xmlNamespace = 'test_xml_namespace';