示例#1
0
 /**
  * Exclude object from result
  *
  * @param   HelpI18n $helpI18n Object to remove from the list of results
  *
  * @return HelpI18nQuery The current query, for fluid interface
  */
 public function prune($helpI18n = null)
 {
     if ($helpI18n) {
         $this->addCond('pruneCond0', $this->getAliasedColName(HelpI18nPeer::ID), $helpI18n->getId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(HelpI18nPeer::LOCALE), $helpI18n->getLocale(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }
示例#2
0
 /**
  * Filter the query by a related HelpI18n object
  *
  * @param   HelpI18n|PropelObjectCollection $helpI18n  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return                 HelpQuery The current query, for fluid interface
  * @throws PropelException - if the provided filter is invalid.
  */
 public function filterByHelpI18n($helpI18n, $comparison = null)
 {
     if ($helpI18n instanceof HelpI18n) {
         return $this->addUsingAlias(HelpPeer::ID, $helpI18n->getId(), $comparison);
     } elseif ($helpI18n instanceof PropelObjectCollection) {
         return $this->useHelpI18nQuery()->filterByPrimaryKeys($helpI18n->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByHelpI18n() only accepts arguments of type HelpI18n or PropelCollection');
     }
 }
示例#3
0
 /**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database.  In some cases -- especially when you override doSelect*()
  * methods in your stub classes -- you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by doSelect*()
  * and retrieveByPK*() calls.
  *
  * @param HelpI18n $obj A HelpI18n object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool($obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = serialize(array((string) $obj->getId(), (string) $obj->getLocale()));
         }
         // if key === null
         HelpI18nPeer::$instances[$key] = $obj;
     }
 }