function CampaignMonitor::clientGetTemplates in Campaign Monitor 6.3
Same name and namespace in other branches
- 6.2 lib/CMBase.php \CampaignMonitor::clientGetTemplates()
*
Parameters
int $client_id (Optional) A valid Client ID to check against. If not given, the default class property is used.: * @return mixed A parsed response from the server, or null if something failed. * @see http://www.campaignmonitor.com/api/method/client-gettemplates/
File
- lib/
CMBase.php, line 971
Class
- CampaignMonitor
- The new CampaignMonitor class that now extends from CMBase. This should be backwards compatible with the original (PHP5) version.
Code
function clientGetTemplates($client_id = null) {
return $this
->clientGeneric('GetTemplates', $client_id);
}