/**
  * Sets the properties of the current object to the value they had at a specific version
  *
  * @param ChildMenuItemI18nVersion $version The version object to use
  * @param ConnectionInterface   $con the connection to use
  * @param array                 $loadedObjects objects that been loaded in a chain of populateFromVersion calls on referrer or fk objects.
  *
  * @return ChildMenuItemI18n The current object (for fluent API support)
  */
 public function populateFromVersion($version, $con = null, &$loadedObjects = array())
 {
     $loadedObjects['ChildMenuItemI18n'][$version->getId()][$version->getVersion()] = $this;
     $this->setId($version->getId());
     $this->setLocale($version->getLocale());
     $this->setTitle($version->getTitle());
     $this->setDescription($version->getDescription());
     $this->setChapo($version->getChapo());
     $this->setPostscriptum($version->getPostscriptum());
     $this->setCreatedAt($version->getCreatedAt());
     $this->setUpdatedAt($version->getUpdatedAt());
     $this->setVersion($version->getVersion());
     $this->setVersionCreatedAt($version->getVersionCreatedAt());
     $this->setVersionCreatedBy($version->getVersionCreatedBy());
     return $this;
 }
 /**
  * Exclude object from result
  *
  * @param   ChildMenuItemI18nVersion $menuItemI18nVersion Object to remove from the list of results
  *
  * @return ChildMenuItemI18nVersionQuery The current query, for fluid interface
  */
 public function prune($menuItemI18nVersion = null)
 {
     if ($menuItemI18nVersion) {
         $this->addCond('pruneCond0', $this->getAliasedColName(MenuItemI18nVersionTableMap::ID), $menuItemI18nVersion->getId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(MenuItemI18nVersionTableMap::VERSION), $menuItemI18nVersion->getVersion(), 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 \Menu\Model\MenuItemI18nVersion $obj A \Menu\Model\MenuItemI18nVersion 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->getVersion()));
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
 /**
  * Filter the query by a related \Menu\Model\MenuItemI18nVersion object
  *
  * @param \Menu\Model\MenuItemI18nVersion|ObjectCollection $menuItemI18nVersion  the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildMenuItemI18nQuery The current query, for fluid interface
  */
 public function filterByMenuItemI18nVersion($menuItemI18nVersion, $comparison = null)
 {
     if ($menuItemI18nVersion instanceof \Menu\Model\MenuItemI18nVersion) {
         return $this->addUsingAlias(MenuItemI18nTableMap::ID, $menuItemI18nVersion->getId(), $comparison);
     } elseif ($menuItemI18nVersion instanceof ObjectCollection) {
         return $this->useMenuItemI18nVersionQuery()->filterByPrimaryKeys($menuItemI18nVersion->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByMenuItemI18nVersion() only accepts arguments of type \\Menu\\Model\\MenuItemI18nVersion or Collection');
     }
 }