Example #1
0
 /**
  * Declares an association between this object and a ChildFile object.
  *
  * @param  ChildFile $v
  * @return $this|\App\Propel\ResourceFile The current object (for fluent API support)
  * @throws PropelException
  */
 public function setFile(ChildFile $v = null)
 {
     if ($v === null) {
         $this->setFileId(NULL);
     } else {
         $this->setFileId($v->getFileId());
     }
     $this->aFile = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildFile object, it will not be re-added.
     if ($v !== null) {
         $v->addResourceFile($this);
     }
     return $this;
 }
Example #2
0
 /**
  * Filter the query by a related \App\Propel\File object
  *
  * @param \App\Propel\File|ObjectCollection $file The related object(s) to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @throws \Propel\Runtime\Exception\PropelException
  *
  * @return ChildResourceFileQuery The current query, for fluid interface
  */
 public function filterByFile($file, $comparison = null)
 {
     if ($file instanceof \App\Propel\File) {
         return $this->addUsingAlias(ResourceFileTableMap::COL_FILE_ID, $file->getFileId(), $comparison);
     } elseif ($file instanceof ObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(ResourceFileTableMap::COL_FILE_ID, $file->toKeyValue('PrimaryKey', 'FileId'), $comparison);
     } else {
         throw new PropelException('filterByFile() only accepts arguments of type \\App\\Propel\\File or Collection');
     }
 }
Example #3
0
 /**
  * Exclude object from result
  *
  * @param   ChildFile $file Object to remove from the list of results
  *
  * @return $this|ChildFileQuery The current query, for fluid interface
  */
 public function prune($file = null)
 {
     if ($file) {
         $this->addUsingAlias(FileTableMap::COL_FILE_ID, $file->getFileId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }