Lines Matching refs:currentComplexType

1097 	var $currentComplexType = null;  variable in nusoap_xmlschema
1305 $this->complexTypes[$this->currentComplexType]['compositor'] = $name;
1346 $this->complexTypes[$this->currentComplexType]['phpType'] = 'array';
1354 $this->complexTypes[$this->currentComplexType]['multidimensional'] = true;
1360 $this->complexTypes[$this->currentComplexType]['arrayType'] = $v;
1366 array_push($this->complexTypeStack, $this->currentComplexType);
1372 $this->currentComplexType = $attrs['name'];
1373 $this->complexTypes[$this->currentComplexType] = $attrs;
1374 $this->complexTypes[$this->currentComplexType]['typeClass'] = 'complexType';
1384 $this->complexTypes[$this->currentComplexType]['phpType'] = 'array';
1386 $this->complexTypes[$this->currentComplexType]['phpType'] = 'struct';
1391 $this->currentComplexType = $name;
1393 $this->complexTypes[$this->currentComplexType] = $attrs;
1394 $this->complexTypes[$this->currentComplexType]['typeClass'] = 'complexType';
1404 $this->complexTypes[$this->currentComplexType]['phpType'] = 'array';
1406 $this->complexTypes[$this->currentComplexType]['phpType'] = 'struct';
1430 …if ($this->currentComplexType && $this->complexTypes[$this->currentComplexType]['phpType'] == 'arr…
1432 $this->complexTypes[$this->currentComplexType]['arrayType'] = $attrs['type'];
1441 $type = $this->CreateTypeName($this->currentComplexType . '_' . $attrs['name']);
1447 if (isset($ename) && $this->currentComplexType) {
1448 $this->xdebug("add element $ename to complexType $this->currentComplexType");
1449 $this->complexTypes[$this->currentComplexType]['elements'][$ename] = $attrs;
1460 } elseif ($this->currentComplexType) {
1461 $this->complexTypes[$this->currentComplexType]['enumeration'][] = $attrs['value'];
1466 if ($this->currentComplexType) {
1467 $this->complexTypes[$this->currentComplexType]['extensionBase'] = $attrs['base'];
1488 } elseif($this->currentComplexType){
1489 $this->complexTypes[$this->currentComplexType]['restrictionBase'] = $attrs['base'];
1491 $this->complexTypes[$this->currentComplexType]['phpType'] = 'array';
1519 $name = $this->CreateTypeName($this->currentComplexType . '_' . $this->currentElement);
1557 …his->xdebug('done processing complexType ' . ($this->currentComplexType ? $this->currentComplexTyp…
1558 $this->currentComplexType = array_pop($this->complexTypeStack);