function XMLSchema::xdebug in Salesforce Suite 5
Same name in this branch
- 5 includes/nusoap.php \XMLSchema::xdebug()
 - 5 includes/nusoap.orig.php \XMLSchema::xdebug()
 
Same name and namespace in other branches
- 5.2 includes/nusoap.php \XMLSchema::xdebug()
 - 5.2 includes/nusoap.orig.php \XMLSchema::xdebug()
 
* adds debug data to the clas level debug string * *
Parameters
string $string debug data: * @access private
12 calls to XMLSchema::xdebug()
- XMLSchema::addComplexType in includes/
nusoap.php  - * adds a complex type to the schema * * example: array * * addType( * 'ArrayOfstring', * 'complexType', * 'array', * '', * 'SOAP-ENC:Array', *…
 - XMLSchema::addComplexType in includes/
nusoap.orig.php  - * adds a complex type to the schema * * example: array * * addType( * 'ArrayOfstring', * 'complexType', * 'array', * '', * 'SOAP-ENC:Array', *…
 - XMLSchema::addElement in includes/
nusoap.php  - * adds an element to the schema * *
 - XMLSchema::addElement in includes/
nusoap.orig.php  - * adds an element to the schema * *
 - XMLSchema::addSimpleType in includes/
nusoap.php  - * adds a simple type to the schema * *
 
File
- includes/
nusoap.orig.php, line 1598  
Class
- XMLSchema
 - parses an XML Schema, allows access to it's data, other utility methods no validation... yet. very experimental and limited. As is discussed on XML-DEV, I'm one of the people that just doesn't have time to read the spec(s) thoroughly,…
 
Code
function xdebug($string) {
  $this
    ->debug('<' . $this->schemaTargetNamespace . '> ' . $string);
}