Esempio n. 1
0
 private function getFields()
 {
     $fields = array();
     // initialize field api-object with list_id
     $field = new Laposta_Field($this->list_id);
     try {
         // get all fields from this list
         // $result will contain een array with the response from the server
         $result = $field->all();
     } catch (Exception $e) {
         // you can use the information in $e to react to the exception
     }
     if ($result['data']) {
         foreach ($result['data'] as $field) {
             $fields[] = $field['field'];
         }
     }
     return $fields;
 }
Esempio n. 2
0
<?php

require_once '../../lib/Laposta.php';
Laposta::setApiKey("JdMtbsMq2jqJdQZD9AHC");
// initialize field with list_id
$field = new Laposta_Field("BaImMu3JZA");
try {
    // get all fields from this list
    // $result will contain een array with the response from the server
    $result = $field->all();
    print '<pre>';
    print_r($result);
    print '</pre>';
} catch (Exception $e) {
    // you can use the information in $e to react to the exception
    print '<pre>';
    print_r($e);
    print '</pre>';
}