Exemplo n.º 1
0
 /**
  * Override of oxException::getValues()
  *
  * @return array
  */
 public function getValues()
 {
     $aRes = parent::getValues();
     $aRes['articleNr'] = $this->getArticleNr();
     $aRes['productId'] = $this->getProductId();
     return $aRes;
 }
Exemplo n.º 2
0
 /**
  * Override of oxException::getValues()
  *
  * @return array
  */
 public function getValues()
 {
     $aRes = parent::getValues();
     $aRes['fileName'] = $this->getFileName();
     return $aRes;
 }
Exemplo n.º 3
0
 /**
  * Creates an array of field name => field value of the object.
  * To make a easy conversion of exceptions to error messages possible.
  * Should be extended when additional fields are used!
  * Overrides oxException::getValues().
  *
  * @return array
  */
 public function getValues()
 {
     $aRes = parent::getValues();
     $aRes['voucherNr'] = $this->getVoucherNr();
     return $aRes;
 }
 /**
  * Creates an array of field name => field value of the object.
  * To make a easy conversion of exceptions to error messages possible.
  * Should be extended when additional fields are used!
  * Overrides oxException::getValues().
  *
  * @return array
  */
 public function getValues()
 {
     $aRes = parent::getValues();
     $aRes['component'] = $this->getComponent();
     return $aRes;
 }
 /**
  * Override of oxException::getValues()
  *
  * @return array
  */
 public function getValues()
 {
     $aRes = parent::getValues();
     $aRes['adress'] = $this->getAdress();
     $aRes['connectionError'] = $this->getConnectionError();
     return $aRes;
 }
Exemplo n.º 6
0
 /**
  * Creates an array of field name => field value of the object
  * to make a easy conversion of exceptions to error messages possible
  * Overrides oxException::getValues()
  * should be extended when additional fields are used!
  *
  * @return array
  */
 public function getValues()
 {
     $aRes = parent::getValues();
     $aRes['langConstant'] = $this->getLangConstant();
     return $aRes;
 }