public function WSClientServiceDescription::dataTypes in Web service client 7
Returns info about the data types of the web service.
File
- ./
wsclient.inc, line 122 - Web service client - include file.
Class
- WSClientServiceDescription
- Class representing web service descriptions.
Code
public function dataTypes() {
$types = $this->datatypes;
foreach ($types as $type => $info) {
// Add in the service name so that others know where this type comes from.
$types[$type]['service'] = $this->name;
}
return $types;
}