/** * Exclude object from result * * @param ChildRoleI18n $roleI18n Object to remove from the list of results * * @return $this|ChildRoleI18nQuery The current query, for fluid interface */ public function prune($roleI18n = null) { if ($roleI18n) { $this->addCond('pruneCond0', $this->getAliasedColName(RoleI18nTableMap::COL_ROLE_ID), $roleI18n->getRoleId(), Criteria::NOT_EQUAL); $this->addCond('pruneCond1', $this->getAliasedColName(RoleI18nTableMap::COL_LOCALE), $roleI18n->getLocale(), Criteria::NOT_EQUAL); $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR); } return $this; }
/** * 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\RoleI18n $obj A \App\Propel\RoleI18n 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->getRoleId() || is_scalar($obj->getRoleId()) || is_callable([$obj->getRoleId(), '__toString']) ? (string) $obj->getRoleId() : $obj->getRoleId(), null === $obj->getLocale() || is_scalar($obj->getLocale()) || is_callable([$obj->getLocale(), '__toString']) ? (string) $obj->getLocale() : $obj->getLocale()]); } // if key === null self::$instances[$key] = $obj; } }
/** * Method called to associate a ChildRoleI18n object to this object * through the ChildRoleI18n foreign key attribute. * * @param ChildRoleI18n $l ChildRoleI18n * @return $this|\App\Propel\Role The current object (for fluent API support) */ public function addRoleI18n(ChildRoleI18n $l) { if ($l && ($locale = $l->getLocale())) { $this->setLocale($locale); $this->currentTranslations[$locale] = $l; } if ($this->collRoleI18ns === null) { $this->initRoleI18ns(); $this->collRoleI18nsPartial = true; } if (!$this->collRoleI18ns->contains($l)) { $this->doAddRoleI18n($l); if ($this->roleI18nsScheduledForDeletion and $this->roleI18nsScheduledForDeletion->contains($l)) { $this->roleI18nsScheduledForDeletion->remove($this->roleI18nsScheduledForDeletion->search($l)); } } return $this; }