You are here

function soapclient::getOperationData in Salesforce Suite 5.2

Same name and namespace in other branches
  1. 5 includes/nusoap.orig.php \soapclient::getOperationData()

* get available data pertaining to an operation * *

Parameters

string $operation operation name: * @return array array of data pertaining to the operation * @access public

1 call to soapclient::getOperationData()
soapclient::call in includes/nusoap.orig.php
* calls method, returns PHP native type * *

File

includes/nusoap.orig.php, line 6708

Class

soapclient
soapclient higher level class for easy usage.

Code

function getOperationData($operation) {
  if (isset($this->operations[$operation])) {
    return $this->operations[$operation];
  }
  $this
    ->debug("No data for operation: {$operation}");
}