Exemple #1
0
 /**
  * Declares an association between this object and a ChildConfig object.
  *
  * @param  ChildConfig $v
  * @return $this|\App\Propel\ConfigI18n The current object (for fluent API support)
  * @throws PropelException
  */
 public function setConfig(ChildConfig $v = null)
 {
     if ($v === null) {
         $this->setConfigId(NULL);
     } else {
         $this->setConfigId($v->getConfigId());
     }
     $this->aConfig = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildConfig object, it will not be re-added.
     if ($v !== null) {
         $v->addConfigI18n($this);
     }
     return $this;
 }
 /**
  * Filter the query by a related \App\Propel\Config object
  *
  * @param \App\Propel\Config|ObjectCollection $config 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 ChildConfigI18nQuery The current query, for fluid interface
  */
 public function filterByConfig($config, $comparison = null)
 {
     if ($config instanceof \App\Propel\Config) {
         return $this->addUsingAlias(ConfigI18nTableMap::COL_CONFIG_ID, $config->getConfigId(), $comparison);
     } elseif ($config instanceof ObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(ConfigI18nTableMap::COL_CONFIG_ID, $config->toKeyValue('PrimaryKey', 'ConfigId'), $comparison);
     } else {
         throw new PropelException('filterByConfig() only accepts arguments of type \\App\\Propel\\Config or Collection');
     }
 }
Exemple #3
0
 /**
  * Exclude object from result
  *
  * @param   ChildConfig $config Object to remove from the list of results
  *
  * @return $this|ChildConfigQuery The current query, for fluid interface
  */
 public function prune($config = null)
 {
     if ($config) {
         $this->addUsingAlias(ConfigTableMap::COL_CONFIG_ID, $config->getConfigId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }