/** * Exclude object from result * * @param ChildDeliveryTypeI18n $deliveryTypeI18n Object to remove from the list of results * * @return $this|ChildDeliveryTypeI18nQuery The current query, for fluid interface */ public function prune($deliveryTypeI18n = null) { if ($deliveryTypeI18n) { $this->addCond('pruneCond0', $this->getAliasedColName(DeliveryTypeI18nTableMap::COL_DELIVERY_TYPE_ID), $deliveryTypeI18n->getDeliveryTypeId(), Criteria::NOT_EQUAL); $this->addCond('pruneCond1', $this->getAliasedColName(DeliveryTypeI18nTableMap::COL_LOCALE), $deliveryTypeI18n->getLocale(), Criteria::NOT_EQUAL); $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR); } return $this; }
/** * Filter the query by a related \App\Propel\DeliveryTypeI18n object * * @param \App\Propel\DeliveryTypeI18n|ObjectCollection $deliveryTypeI18n the related object to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return ChildDeliveryTypeQuery The current query, for fluid interface */ public function filterByDeliveryTypeI18n($deliveryTypeI18n, $comparison = null) { if ($deliveryTypeI18n instanceof \App\Propel\DeliveryTypeI18n) { return $this->addUsingAlias(DeliveryTypeTableMap::COL_DELIVERY_TYPE_ID, $deliveryTypeI18n->getDeliveryTypeId(), $comparison); } elseif ($deliveryTypeI18n instanceof ObjectCollection) { return $this->useDeliveryTypeI18nQuery()->filterByPrimaryKeys($deliveryTypeI18n->getPrimaryKeys())->endUse(); } else { throw new PropelException('filterByDeliveryTypeI18n() only accepts arguments of type \\App\\Propel\\DeliveryTypeI18n or Collection'); } }
/** * 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 you may need to explicitly add objects * to the cache in order to ensure that the same objects are always returned by find*() * and findPk*() calls. * * @param \App\Propel\DeliveryTypeI18n $obj A \App\Propel\DeliveryTypeI18n 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 (null === $key) { $key = serialize([null === $obj->getDeliveryTypeId() || is_scalar($obj->getDeliveryTypeId()) || is_callable([$obj->getDeliveryTypeId(), '__toString']) ? (string) $obj->getDeliveryTypeId() : $obj->getDeliveryTypeId(), null === $obj->getLocale() || is_scalar($obj->getLocale()) || is_callable([$obj->getLocale(), '__toString']) ? (string) $obj->getLocale() : $obj->getLocale()]); } // if key === null self::$instances[$key] = $obj; } }