/** * 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 \Thelia\Model\ContentI18n $obj A \Thelia\Model\ContentI18n 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(array((string) $obj->getId(), (string) $obj->getLocale())); } // if key === null self::$instances[$key] = $obj; } }
/** * Method called to associate a ChildContentI18n object to this object * through the ChildContentI18n foreign key attribute. * * @param ChildContentI18n $l ChildContentI18n * @return \Thelia\Model\Content The current object (for fluent API support) */ public function addContentI18n(ChildContentI18n $l) { if ($l && ($locale = $l->getLocale())) { $this->setLocale($locale); $this->currentTranslations[$locale] = $l; } if ($this->collContentI18ns === null) { $this->initContentI18ns(); $this->collContentI18nsPartial = true; } if (!in_array($l, $this->collContentI18ns->getArrayCopy(), true)) { // only add it if the **same** object is not already associated $this->doAddContentI18n($l); } return $this; }
/** * Exclude object from result * * @param ChildContentI18n $contentI18n Object to remove from the list of results * * @return ChildContentI18nQuery The current query, for fluid interface */ public function prune($contentI18n = null) { if ($contentI18n) { $this->addCond('pruneCond0', $this->getAliasedColName(ContentI18nTableMap::ID), $contentI18n->getId(), Criteria::NOT_EQUAL); $this->addCond('pruneCond1', $this->getAliasedColName(ContentI18nTableMap::LOCALE), $contentI18n->getLocale(), Criteria::NOT_EQUAL); $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR); } return $this; }