Ejemplo n.º 1
0
 /**
  * @param 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.
  */
 function CampaignMonitor($api = null, $client = null, $campaign = null, $list = null, $method = 'get')
 {
     CMBase::CMBase($api, $client, $campaign, $list, $method);
 }
 public function getField($field)
 {
     if (isset($this->record[$field])) {
         return $this->record[$field];
     }
     return parent::getField($field);
 }