function CampaignMonitor::CampaignMonitor in Campaign Monitor 6.3
Same name and namespace in other branches
- 5.2 lib/CMBase.php \CampaignMonitor::CampaignMonitor()
- 6.2 lib/CMBase.php \CampaignMonitor::CampaignMonitor()
*
Parameters
string $api Your API key.: * @param string $client The default ClientId you're going to work with. * @param string $campaign The default CampaignId you're going to work with. * @param string $list The default ListId you're going to work with. * @param string $method Determines request type. Values are either get, post, or soap.
File
- lib/
CMBase.php, line 559
Class
- CampaignMonitor
- The new CampaignMonitor class that now extends from CMBase. This should be backwards compatible with the original (PHP5) version.
Code
function CampaignMonitor($api = null, $client = null, $campaign = null, $list = null, $method = 'get') {
CMBase::CMBase($api, $client, $campaign, $list, $method);
}