Home
last modified time | relevance | path

Searched refs:uqType (Results 1 – 4 of 4) sorted by relevance

/plugin/mantis/lib/
Dclass.wsdl.php711 $uqType = substr($t['type'], strrpos($t['type'], ':') + 1);
713 $etype = $this->getTypeDef($uqType, $ns);
1020 $uqType = substr($type, strrpos($type, ':') + 1);
1022 $this->debug("in parametersMatchWrapped: got a prefixed type: $uqType, $ns");
1025 $this->debug("in parametersMatchWrapped: expanded prefixed type: $uqType, $ns");
1032 $uqType = $type;
1036 if (!$typeDef = $this->getTypeDef($uqType, $ns)) {
1037 $this->debug("in parametersMatchWrapped: $type ($uqType) is not a supported type.");
1042 if (substr($uqType, -1) == '^') {
1043 $uqType = substr($uqType, 0, -1);
[all …]
Dnusoap.php1772 …$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;
[all …]
Dclass.xmlschema.php704 …$uqType = substr($this->simpleTypes[$type]['type'], strrpos($this->simpleTypes[$type]['type'], ':'…
706 $etype = $this->getTypeDef($uqType);
723 …$uqType = substr($this->elements[$type]['type'], strrpos($this->elements[$type]['type'], ':') + 1);
725 $etype = $this->getTypeDef($uqType);
/plugin/googlesearch/
Dnusoap.php1661 …$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</$…
[all …]