You are here

function nusoapclient::getOperationData in Salesforce Suite 5.2

Same name and namespace in other branches
  1. 5 includes/nusoap.php \nusoapclient::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 nusoapclient::getOperationData()
nusoapclient::call in includes/nusoap.php
* calls method, returns PHP native type * *

File

includes/nusoap.php, line 6747

Class

nusoapclient
nusoapclient 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}");
}