function MCAPI::callMethod in Mailchimp 5
Same name and namespace in other branches
- 5.2 MCAPI.class.php \MCAPI::callMethod()
- 6.2 MCAPI.class.php \MCAPI::callMethod()
- 6 MCAPI.class.php \MCAPI::callMethod()
- 7 MCAPI.class.php \MCAPI::callMethod()
Internal function - proxy method for certain XML-RPC calls | DO NOT CALL
Parameters
mixed Method to call, with any parameters to pass along:
Return value
mixed the result of the call
File
- ./
MCAPI.class.php, line 1017
Class
Code
function callMethod() {
$params = array();
return $this
->callServer("callMethod", $params);
}