Lines Matching refs:uqType

1772 …$uqType = substr($this->simpleTypes[$type]['type'], strrpos($this->simpleTypes[$type]['type'], ':'…
1774 $etype = $this->getTypeDef($uqType);
1791 …$uqType = substr($this->elements[$type]['type'], strrpos($this->elements[$type]['type'], ':') + 1);
1793 $etype = $this->getTypeDef($uqType);
5223 $uqType = substr($t['type'], strrpos($t['type'], ':') + 1);
5225 $etype = $this->getTypeDef($uqType, $ns);
5532 $uqType = substr($type, strrpos($type, ':') + 1);
5534 $this->debug("in parametersMatchWrapped: got a prefixed type: $uqType, $ns");
5537 $this->debug("in parametersMatchWrapped: expanded prefixed type: $uqType, $ns");
5544 $uqType = $type;
5548 if (!$typeDef = $this->getTypeDef($uqType, $ns)) {
5549 $this->debug("in parametersMatchWrapped: $type ($uqType) is not a supported type.");
5554 if (substr($uqType, -1) == '^') {
5555 $uqType = substr($uqType, 0, -1);
5559 …$this->debug("in parametersMatchWrapped: uqType: $uqType, ns: $ns, phptype: $phpType, arrayType: $…
5600 $this->debug("in parametersMatchWrapped: no elements type $ns:$uqType");
5853 …name$elementNS xsi:nil=\"true\" xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"/>";
5858 if ($uqType == 'Array') {
5862 if ($uqType == 'boolean') {
5869 if ($uqType == 'string' && gettype($value) == 'string') {
5880 if (($uqType == 'long' || $uqType == 'unsignedLong') && gettype($value) == 'double') {
5886 if (!$this->getTypeDef($uqType, $ns)) {
5889 …$xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\">$value</$…
5905 …$xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"$encodingS…
5932 $xml = "<$name xsi:type=\"" . $tt_prefix . ":$uqType\">$contents</$name>";
5937 $xml = "<$name xsi:type=\"" . $tt_prefix . ":$uqType\"$encodingStyle>$contents</$name>";
5949 $uqType = $type;
5951 if(!$typeDef = $this->getTypeDef($uqType, $ns)){
5952 $this->setError("$type ($uqType) is not a supported type.");
5953 $this->debug("in serializeType: $type ($uqType) is not a supported type.");
5958 if (substr($uqType, -1) == '^') {
5959 $uqType = substr($uqType, 0, -1);
5963 …$this->debug("in serializeType: uqType: $uqType, ns: $ns, phptype: $phpType, arrayType: " . (isset…
5967 $elementName = $uqType;
5986 …Name$elementNS xsi:nil=\"true\" xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"/>";
5995 $elementAttrs = $this->serializeComplexTypeAttributes($typeDef, $value, $ns, $uqType);
5998 …ementName$elementNS$elementAttrs xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\">";
6003 …entNS$elementAttrs xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"$encodingStyle>";
6006 … $xml .= $this->serializeComplexTypeElements($typeDef, $value, $ns, $uqType, $use, $encodingStyle);
6093 …$xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\">$value</$…
6098 …$xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"$encodingS…
6111 * @param string $uqType the local part of the type
6115 function serializeComplexTypeAttributes($typeDef, $value, $ns, $uqType) { argument
6118 $this->debug("serialize attributes for XML Schema type $ns:$uqType");
6124 $this->debug("value is neither an array nor an object for XML Schema type $ns:$uqType");
6147 $this->debug("no attributes to serialize for XML Schema type $ns:$uqType");
6151 $uqType = $this->getLocalPart($typeDef['extensionBase']);
6155 if ($typeDef = $this->getTypeDef($uqType, $ns)) {
6156 $this->debug("serialize attributes for extension base $ns:$uqType");
6157 $xml .= $this->serializeComplexTypeAttributes($typeDef, $value, $ns, $uqType);
6159 $this->debug("extension base $ns:$uqType is not a supported type");
6171 * @param string $uqType the local part of the type
6177 …function serializeComplexTypeElements($typeDef, $value, $ns, $uqType, $use='encoded', $encodingSty… argument
6180 …this->debug("in serializeComplexTypeElements, serialize elements for XML Schema type $ns:$uqType");
6186 $this->debug("value is neither an array nor an object for XML Schema type $ns:$uqType");
6247 $this->debug("no elements to serialize for XML Schema type $ns:$uqType");
6251 $uqType = $this->getLocalPart($typeDef['extensionBase']);
6255 if ($typeDef = $this->getTypeDef($uqType, $ns)) {
6256 $this->debug("serialize elements for extension base $ns:$uqType");
6257 … $xml .= $this->serializeComplexTypeElements($typeDef, $value, $ns, $uqType, $use, $encodingStyle);
6259 $this->debug("extension base $ns:$uqType is not a supported type");