Пример #1
0
 /**
  * Declares an association between this object and a ChildImport object.
  *
  * @param                  ChildImport $v
  * @return                 \Thelia\Model\ImportI18n The current object (for fluent API support)
  * @throws PropelException
  */
 public function setImport(ChildImport $v = null)
 {
     if ($v === null) {
         $this->setId(NULL);
     } else {
         $this->setId($v->getId());
     }
     $this->aImport = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildImport object, it will not be re-added.
     if ($v !== null) {
         $v->addImportI18n($this);
     }
     return $this;
 }