Lines Matching refs:uqType

1661 …$uqType = substr($this->simpleTypes[$type]['type'], strrpos($this->simpleTypes[$type]['type'], ':'…
1663 $etype = $this->getTypeDef($uqType);
1680 …$uqType = substr($this->elements[$type]['type'], strrpos($this->elements[$type]['type'], ':') + 1);
1682 $etype = $this->getTypeDef($uqType);
5235 …name$elementNS xsi:nil=\"true\" xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"/>";
5240 if ($uqType == 'boolean') {
5247 if ($uqType == 'string' && gettype($value) == 'string') {
5250 if (($uqType == 'long' || $uqType == 'unsignedLong') && gettype($value) == 'double') {
5256 if (!$this->getTypeDef($uqType, $ns)) {
5259 …$xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\">$value</$…
5264 …$xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"$encodingS…
5291 $xml = "<$name xsi:type=\"" . $tt_prefix . ":$uqType\">$contents</$name>";
5296 $xml = "<$name xsi:type=\"" . $tt_prefix . ":$uqType\"$encodingStyle>$contents</$name>";
5308 $uqType = $type;
5310 if(!$typeDef = $this->getTypeDef($uqType, $ns)){
5311 $this->setError("$type ($uqType) is not a supported type.");
5312 $this->debug("in serializeType: $type ($uqType) is not a supported type.");
5319 …$this->debug("in serializeType: uqType: $uqType, ns: $ns, phptype: $phpType, arrayType: " . (isset…
5323 $elementName = $uqType;
5342 …Name$elementNS xsi:nil=\"true\" xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"/>";
5351 $elementAttrs = $this->serializeComplexTypeAttributes($typeDef, $value, $ns, $uqType);
5354 …ementName$elementNS$elementAttrs xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\">";
5359 …entNS$elementAttrs xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"$encodingStyle>";
5362 … $xml .= $this->serializeComplexTypeElements($typeDef, $value, $ns, $uqType, $use, $encodingStyle);
5449 …$xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\">$value</$…
5454 …$xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"$encodingS…
5467 * @param string $uqType the local part of the type
5471 function serializeComplexTypeAttributes($typeDef, $value, $ns, $uqType) { argument
5474 $this->debug("serialize attributes for XML Schema type $ns:$uqType");
5480 $this->debug("value is neither an array nor an object for XML Schema type $ns:$uqType");
5503 $this->debug("no attributes to serialize for XML Schema type $ns:$uqType");
5507 $uqType = $this->getLocalPart($typeDef['extensionBase']);
5511 if ($typeDef = $this->getTypeDef($uqType, $ns)) {
5512 $this->debug("serialize attributes for extension base $ns:$uqType");
5513 $xml .= $this->serializeComplexTypeAttributes($typeDef, $value, $ns, $uqType);
5515 $this->debug("extension base $ns:$uqType is not a supported type");
5527 * @param string $uqType the local part of the type
5533 …function serializeComplexTypeElements($typeDef, $value, $ns, $uqType, $use='encoded', $encodingSty… argument
5536 …this->debug("in serializeComplexTypeElements, serialize elements for XML Schema type $ns:$uqType");
5542 $this->debug("value is neither an array nor an object for XML Schema type $ns:$uqType");
5603 $this->debug("no elements to serialize for XML Schema type $ns:$uqType");
5607 $uqType = $this->getLocalPart($typeDef['extensionBase']);
5611 if ($typeDef = $this->getTypeDef($uqType, $ns)) {
5612 $this->debug("serialize elements for extension base $ns:$uqType");
5613 … $xml .= $this->serializeComplexTypeElements($typeDef, $value, $ns, $uqType, $use, $encodingStyle);
5615 $this->debug("extension base $ns:$uqType is not a supported type");