You are here

function MCAPI::callMethod in Mailchimp 7

Same name and namespace in other branches
  1. 5.2 MCAPI.class.php \MCAPI::callMethod()
  2. 5 MCAPI.class.php \MCAPI::callMethod()
  3. 6.2 MCAPI.class.php \MCAPI::callMethod()
  4. 6 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 1568

Class

MCAPI

Code

function callMethod() {
  $params = array();
  return $this
    ->callServer("callMethod", $params);
}