class MailchimpReports in Mailchimp 8
Same name in this branch
- 8 lib/mailchimp-api-php/src/MailchimpReports.php \Mailchimp\MailchimpReports
- 8 lib/mailchimp-api-php/tests/src/MailchimpReports.php \Mailchimp\Tests\MailchimpReports
Mailchimp Reports library test cases.
@package Mailchimp\Tests
Hierarchy
- class \Mailchimp\Mailchimp
- class \Mailchimp\MailchimpReports
- class \Mailchimp\Tests\MailchimpReports
- class \Mailchimp\MailchimpReports
Expanded class hierarchy of MailchimpReports
1 string reference to 'MailchimpReports'
- MailchimpCampaignController::stats in modules/
mailchimp_campaign/ src/ Controller/ MailchimpCampaignController.php - View a Mailchimp campaign stats.
File
- lib/
mailchimp-api-php/ tests/ src/ MailchimpReports.php, line 10
Namespace
Mailchimp\TestsView source
class MailchimpReports extends \Mailchimp\MailchimpReports {
/**
* @inheritdoc
*/
public function __construct($api_key = 'apikey', $api_user = 'apikey', $http_options = []) {
$this->client = new MailchimpTestHttpClient();
}
public function getClient() {
return $this->client;
}
public function getEndpoint() {
return $this->endpoint;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Mailchimp:: |
private | property | The Mailchimp API key to authenticate with. | |
Mailchimp:: |
private | property | The Mailchimp API username to authenticate with. | |
Mailchimp:: |
private | property | Array of pending batch operations. | |
Mailchimp:: |
protected | property | The HTTP client. | |
Mailchimp:: |
private | property | A Mailchimp API error code to return with every API response. | |
Mailchimp:: |
protected | property | The REST API endpoint. | |
Mailchimp:: |
public | property | API version. | |
Mailchimp:: |
protected | function | Adds a pending batch operation. | |
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
constant | |||
Mailchimp:: |
public | function | Gets Mailchimp account information for the authenticated account. | |
Mailchimp:: |
public | function | Gets the status of a batch request. | |
Mailchimp:: |
private | function | Gets the ID of the data center associated with an API key. | |
Mailchimp:: |
private | function | Instantiates a default HTTP client based on the local environment. | |
Mailchimp:: |
public | function | Processes all pending batch operations. | |
Mailchimp:: |
public | function | Makes a request to the Mailchimp API. | |
Mailchimp:: |
public | function | Sets a custom HTTP client to be used for all API requests. | |
Mailchimp:: |
public | function | Sets a Mailchimp error code to be returned by all requests. | |
Mailchimp:: |
constant | |||
MailchimpReports:: |
public | function | Gets a specific report for a specific campaign. | |
MailchimpReports:: |
public | function | Gets a report summary for a specific campaign. | |
MailchimpReports:: |
public | function | ||
MailchimpReports:: |
public | function | ||
MailchimpReports:: |
public | function | Gets a report summary for the authenticated account. | |
MailchimpReports:: |
public | function |
@inheritdoc Overrides Mailchimp:: |