コード例 #1
0
ファイル: ConfigQuery.php プロジェクト: margery/thelia
 /**
  * Filter the query by a related \Thelia\Model\ConfigI18n object
  *
  * @param \Thelia\Model\ConfigI18n|ObjectCollection $configI18n  the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildConfigQuery The current query, for fluid interface
  */
 public function filterByConfigI18n($configI18n, $comparison = null)
 {
     if ($configI18n instanceof \Thelia\Model\ConfigI18n) {
         return $this->addUsingAlias(ConfigTableMap::ID, $configI18n->getId(), $comparison);
     } elseif ($configI18n instanceof ObjectCollection) {
         return $this->useConfigI18nQuery()->filterByPrimaryKeys($configI18n->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByConfigI18n() only accepts arguments of type \\Thelia\\Model\\ConfigI18n or Collection');
     }
 }
コード例 #2
0
ファイル: Config.php プロジェクト: margery/thelia
 /**
  * Returns the current translation for a given locale
  *
  * @param     string $locale Locale to use for the translation, e.g. 'fr_FR'
  * @param     ConnectionInterface $con an optional connection object
  *
  * @return ChildConfigI18n */
 public function getTranslation($locale = 'en_US', ConnectionInterface $con = null)
 {
     if (!isset($this->currentTranslations[$locale])) {
         if (null !== $this->collConfigI18ns) {
             foreach ($this->collConfigI18ns as $translation) {
                 if ($translation->getLocale() == $locale) {
                     $this->currentTranslations[$locale] = $translation;
                     return $translation;
                 }
             }
         }
         if ($this->isNew()) {
             $translation = new ChildConfigI18n();
             $translation->setLocale($locale);
         } else {
             $translation = ChildConfigI18nQuery::create()->filterByPrimaryKey(array($this->getPrimaryKey(), $locale))->findOneOrCreate($con);
             $this->currentTranslations[$locale] = $translation;
         }
         $this->addConfigI18n($translation);
     }
     return $this->currentTranslations[$locale];
 }
コード例 #3
0
ファイル: ConfigI18nQuery.php プロジェクト: margery/thelia
 /**
  * Exclude object from result
  *
  * @param   ChildConfigI18n $configI18n Object to remove from the list of results
  *
  * @return ChildConfigI18nQuery The current query, for fluid interface
  */
 public function prune($configI18n = null)
 {
     if ($configI18n) {
         $this->addCond('pruneCond0', $this->getAliasedColName(ConfigI18nTableMap::ID), $configI18n->getId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(ConfigI18nTableMap::LOCALE), $configI18n->getLocale(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }
コード例 #4
0
ファイル: ConfigI18nTableMap.php プロジェクト: margery/thelia
 /**
  * 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\ConfigI18n $obj A \Thelia\Model\ConfigI18n 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;
     }
 }