Example #1
0
 public static function GetArrayFromSoapArray($objSoapArray)
 {
     $objArrayToReturn = array();
     foreach ($objSoapArray as $objSoapObject) {
         array_push($objArrayToReturn, Category::GetObjectFromSoapObject($objSoapObject));
     }
     return $objArrayToReturn;
 }
 public static function GetObjectFromSoapObject($objSoapObject)
 {
     $objToReturn = new InventoryModel();
     if (property_exists($objSoapObject, 'InventoryModelId')) {
         $objToReturn->intInventoryModelId = $objSoapObject->InventoryModelId;
     }
     if (property_exists($objSoapObject, 'Category') && $objSoapObject->Category) {
         $objToReturn->Category = Category::GetObjectFromSoapObject($objSoapObject->Category);
     }
     if (property_exists($objSoapObject, 'Manufacturer') && $objSoapObject->Manufacturer) {
         $objToReturn->Manufacturer = Manufacturer::GetObjectFromSoapObject($objSoapObject->Manufacturer);
     }
     if (property_exists($objSoapObject, 'InventoryModelCode')) {
         $objToReturn->strInventoryModelCode = $objSoapObject->InventoryModelCode;
     }
     if (property_exists($objSoapObject, 'ShortDescription')) {
         $objToReturn->strShortDescription = $objSoapObject->ShortDescription;
     }
     if (property_exists($objSoapObject, 'LongDescription')) {
         $objToReturn->strLongDescription = $objSoapObject->LongDescription;
     }
     if (property_exists($objSoapObject, 'ImagePath')) {
         $objToReturn->strImagePath = $objSoapObject->ImagePath;
     }
     if (property_exists($objSoapObject, 'Price')) {
         $objToReturn->fltPrice = $objSoapObject->Price;
     }
     if (property_exists($objSoapObject, 'CreatedByObject') && $objSoapObject->CreatedByObject) {
         $objToReturn->CreatedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->CreatedByObject);
     }
     if (property_exists($objSoapObject, 'CreationDate')) {
         $objToReturn->dttCreationDate = new QDateTime($objSoapObject->CreationDate);
     }
     if (property_exists($objSoapObject, 'ModifiedByObject') && $objSoapObject->ModifiedByObject) {
         $objToReturn->ModifiedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->ModifiedByObject);
     }
     if (property_exists($objSoapObject, 'ModifiedDate')) {
         $objToReturn->strModifiedDate = $objSoapObject->ModifiedDate;
     }
     if (property_exists($objSoapObject, '__blnRestored')) {
         $objToReturn->__blnRestored = $objSoapObject->__blnRestored;
     }
     return $objToReturn;
 }
 public static function GetObjectFromSoapObject($objSoapObject)
 {
     $objToReturn = new CategoryCustomFieldHelper();
     if (property_exists($objSoapObject, 'Category') && $objSoapObject->Category) {
         $objToReturn->Category = Category::GetObjectFromSoapObject($objSoapObject->Category);
     }
     if (property_exists($objSoapObject, '__blnRestored')) {
         $objToReturn->__blnRestored = $objSoapObject->__blnRestored;
     }
     return $objToReturn;
 }