Exemplo n.º 1
0
 public function getData()
 {
     $ret = parent::getData();
     $ret['error_reason'] = $this->errorReason;
     $ret['error_code'] = $this->errorCode;
     return $ret;
 }
Exemplo n.º 2
0
 public function getData()
 {
     $ret = parent::getData();
     $exception = $this->getException();
     if ($exception) {
         $ret['exception_message'] = $exception->getMessage();
         $ret['exception_file'] = $exception->getFile();
         $ret['exception_line'] = $exception->getLine();
         $ret['exception_class'] = get_class($exception);
     }
     return $ret;
 }
Exemplo n.º 3
0
 /**
  * Zwraca dane przystowane do zapisu loga do bazy danych
  * @return array - tablica z danymi zdarzenia
  */
 public function getData()
 {
     $ret = parent::getData();
     $ret['search_params'] = $this->getSearchParams($this->searchParams);
     $ret['search_results'] = $this->getSearchResults($this->searchResults);
     return $ret;
 }
Exemplo n.º 4
0
 /**
  * Zwraca dane przystowane do zapisu loga do bazy danych
  * @return array - tablica z danymi zdarzenia
  */
 public function getData()
 {
     $ret = parent::getData();
     $ret['event_items'] = $this->getJson($this->getItems());
     $ret['backend_apps_items'] = $this->getJson($this->getBeckendAppsItems());
     if (!is_null($this->customerId)) {
         $ret['customer_id'] = $this->customerId;
     }
     $ret['customer_ids'] = '{' . implode(',', $this->customerIds) . '}';
     return $ret;
 }
Exemplo n.º 5
0
 public function getData()
 {
     $ret = parent::getData();
     $ret['pesel'] = $this->pesel;
     $ret['document_number'] = $this->documentNumber;
     $ret['id_document_type'] = $this->IdDocumentType;
     $ret['error_reason'] = $this->errorReason;
     $ret['error_code'] = $this->errorCode;
     $ret['id_backend_application'] = $this->idBackendApp;
     return $ret;
 }
Exemplo n.º 6
0
 /**
  * Zwraca dane przystowane do zapisu loga do bazy danych
  * @return array - tablica z danymi zdarzenia
  */
 public function getData()
 {
     $ret = parent::getData();
     $ret['client_name'] = $this->clientName;
     $ret['id_document_type'] = $this->idType;
     $ret['document_number'] = $this->documentNo;
     $ret['test_result'] = $this->testResult;
     $ret['pesel'] = $this->pesel;
     $ret['id_backend_application'] = $this->idBackendApp;
     return $ret;
 }
Exemplo n.º 7
0
 public function getData()
 {
     $ret = parent::getData();
     $ret['template_name'] = $this->getTemplateName();
     return $ret;
 }