Exemplo n.º 1
0
 /**
  * Check the status of the newsletter.
  *
  * @param int $ID of the current newsletter
  */
 public function getStatus($ID)
 {
     $this->name = $this->name . "/{$ID}/status";
     return parent::getView($ID, array(), false);
 }
Exemplo n.º 2
0
 /**
  * Retrieve contact lists where the contact is subscribed to.
  *
  * @param int ID of the contact
  *
  * @return Contact
  */
 public function getViewContactsLists($ID)
 {
     $this->name = $this->name . "/{$ID}/getcontactslists";
     return parent::getView($ID, array(), false);
 }
Exemplo n.º 3
0
 /**
  * Retrieve the import background job status.
  *
  * @param int $JOBid id of the job
  *
  * @return Contactslist
  */
 public function getImportListStatus($JOBid)
 {
     $this->name = $this->name . "/{$JOBid}/importlist";
     return parent::getView($JOBid, array(), false);
 }