Beispiel #1
0
 /**
  * Sets contents of passed object to values from current object.
  *
  * If desired, this method can also make copies of all associated (fkey referrers)
  * objects.
  *
  * @param      object $copyObj An object of \Thelia\Model\Feature (or compatible) type.
  * @param      boolean $deepCopy Whether to also copy all rows that refer (by fkey) to the current row.
  * @param      boolean $makeNew Whether to reset autoincrement PKs and make the object new.
  * @throws PropelException
  */
 public function copyInto($copyObj, $deepCopy = false, $makeNew = true)
 {
     $copyObj->setVisible($this->getVisible());
     $copyObj->setPosition($this->getPosition());
     $copyObj->setCreatedAt($this->getCreatedAt());
     $copyObj->setUpdatedAt($this->getUpdatedAt());
     if ($deepCopy) {
         // important: temporarily setNew(false) because this affects the behavior of
         // the getter/setter methods for fkey referrer objects.
         $copyObj->setNew(false);
         foreach ($this->getFeatureAvs() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addFeatureAv($relObj->copy($deepCopy));
             }
         }
         foreach ($this->getFeatureProducts() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addFeatureProduct($relObj->copy($deepCopy));
             }
         }
         foreach ($this->getFeatureTemplates() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addFeatureTemplate($relObj->copy($deepCopy));
             }
         }
         foreach ($this->getFeatureI18ns() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addFeatureI18n($relObj->copy($deepCopy));
             }
         }
     }
     // if ($deepCopy)
     if ($makeNew) {
         $copyObj->setNew(true);
         $copyObj->setId(NULL);
         // this is a auto-increment column, so set to default value
     }
 }
Beispiel #2
0
 /**
  * Sets contents of passed object to values from current object.
  *
  * If desired, this method can also make copies of all associated (fkey referrers)
  * objects.
  *
  * @param      object $copyObj An object of \Thelia\Model\Product (or compatible) type.
  * @param      boolean $deepCopy Whether to also copy all rows that refer (by fkey) to the current row.
  * @param      boolean $makeNew Whether to reset autoincrement PKs and make the object new.
  * @throws PropelException
  */
 public function copyInto($copyObj, $deepCopy = false, $makeNew = true)
 {
     $copyObj->setTaxRuleId($this->getTaxRuleId());
     $copyObj->setRef($this->getRef());
     $copyObj->setVisible($this->getVisible());
     $copyObj->setPosition($this->getPosition());
     $copyObj->setTemplateId($this->getTemplateId());
     $copyObj->setBrandId($this->getBrandId());
     $copyObj->setVirtual($this->getVirtual());
     $copyObj->setCreatedAt($this->getCreatedAt());
     $copyObj->setUpdatedAt($this->getUpdatedAt());
     $copyObj->setVersion($this->getVersion());
     $copyObj->setVersionCreatedAt($this->getVersionCreatedAt());
     $copyObj->setVersionCreatedBy($this->getVersionCreatedBy());
     if ($deepCopy) {
         // important: temporarily setNew(false) because this affects the behavior of
         // the getter/setter methods for fkey referrer objects.
         $copyObj->setNew(false);
         foreach ($this->getProductCategories() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addProductCategory($relObj->copy($deepCopy));
             }
         }
         foreach ($this->getFeatureProducts() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addFeatureProduct($relObj->copy($deepCopy));
             }
         }
         foreach ($this->getProductSaleElementss() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addProductSaleElements($relObj->copy($deepCopy));
             }
         }
         foreach ($this->getProductImages() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addProductImage($relObj->copy($deepCopy));
             }
         }
         foreach ($this->getProductDocuments() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addProductDocument($relObj->copy($deepCopy));
             }
         }
         foreach ($this->getAccessoriesRelatedByProductId() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addAccessoryRelatedByProductId($relObj->copy($deepCopy));
             }
         }
         foreach ($this->getAccessoriesRelatedByAccessory() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addAccessoryRelatedByAccessory($relObj->copy($deepCopy));
             }
         }
         foreach ($this->getCartItems() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addCartItem($relObj->copy($deepCopy));
             }
         }
         foreach ($this->getProductAssociatedContents() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addProductAssociatedContent($relObj->copy($deepCopy));
             }
         }
         foreach ($this->getSaleProducts() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addSaleProduct($relObj->copy($deepCopy));
             }
         }
         foreach ($this->getProductI18ns() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addProductI18n($relObj->copy($deepCopy));
             }
         }
         foreach ($this->getProductVersions() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addProductVersion($relObj->copy($deepCopy));
             }
         }
     }
     // if ($deepCopy)
     if ($makeNew) {
         $copyObj->setNew(true);
         $copyObj->setId(NULL);
         // this is a auto-increment column, so set to default value
     }
 }