예제 #1
0
 private function saveDescription(Module $module, \SimpleXMLElement $content, ConnectionInterface $con)
 {
     foreach ($content->descriptive as $description) {
         $locale = $description->attributes()->locale;
         $moduleI18n = new ModuleI18n();
         $moduleI18n->setLocale($locale)->setModule($module)->setTitle($description->title)->setDescription(isset($description->description) ? $description->description : null)->setPostscriptum(isset($description->postscriptum) ? $description->postscriptum : null)->setChapo(isset($description->subtitle) ? $description->subtitle : null)->save($con);
     }
 }
예제 #2
0
 /**
  * Sets a module titles for various languages
  *
  * @param Module $module the module.
  * @param array  $titles an associative array of locale => title_string
  */
 public function setTitle(Module $module, $titles)
 {
     if (is_array($titles)) {
         foreach ($titles as $locale => $title) {
             $moduleI18n = ModuleI18nQuery::create()->filterById($module->getId())->filterByLocale($locale)->findOne();
             if (null === $moduleI18n) {
                 $moduleI18n = new ModuleI18n();
                 $moduleI18n->setId($module->getId())->setLocale($locale)->setTitle($title);
                 $moduleI18n->save();
             } else {
                 $moduleI18n->setTitle($title);
                 $moduleI18n->save();
             }
         }
     }
 }
예제 #3
0
 /**
  * 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\ModuleI18n $obj A \Thelia\Model\ModuleI18n 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;
     }
 }
예제 #4
0
 /**
  * Exclude object from result
  *
  * @param   ChildModuleI18n $moduleI18n Object to remove from the list of results
  *
  * @return ChildModuleI18nQuery The current query, for fluid interface
  */
 public function prune($moduleI18n = null)
 {
     if ($moduleI18n) {
         $this->addCond('pruneCond0', $this->getAliasedColName(ModuleI18nTableMap::ID), $moduleI18n->getId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(ModuleI18nTableMap::LOCALE), $moduleI18n->getLocale(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }
예제 #5
0
파일: Module.php 프로젝트: fachriza/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 ChildModuleI18n */
 public function getTranslation($locale = 'en_US', ConnectionInterface $con = null)
 {
     if (!isset($this->currentTranslations[$locale])) {
         if (null !== $this->collModuleI18ns) {
             foreach ($this->collModuleI18ns as $translation) {
                 if ($translation->getLocale() == $locale) {
                     $this->currentTranslations[$locale] = $translation;
                     return $translation;
                 }
             }
         }
         if ($this->isNew()) {
             $translation = new ChildModuleI18n();
             $translation->setLocale($locale);
         } else {
             $translation = ChildModuleI18nQuery::create()->filterByPrimaryKey(array($this->getPrimaryKey(), $locale))->findOneOrCreate($con);
             $this->currentTranslations[$locale] = $translation;
         }
         $this->addModuleI18n($translation);
     }
     return $this->currentTranslations[$locale];
 }
예제 #6
0
 /**
  * Filter the query by a related \Thelia\Model\ModuleI18n object
  *
  * @param \Thelia\Model\ModuleI18n|ObjectCollection $moduleI18n  the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildModuleQuery The current query, for fluid interface
  */
 public function filterByModuleI18n($moduleI18n, $comparison = null)
 {
     if ($moduleI18n instanceof \Thelia\Model\ModuleI18n) {
         return $this->addUsingAlias(ModuleTableMap::ID, $moduleI18n->getId(), $comparison);
     } elseif ($moduleI18n instanceof ObjectCollection) {
         return $this->useModuleI18nQuery()->filterByPrimaryKeys($moduleI18n->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByModuleI18n() only accepts arguments of type \\Thelia\\Model\\ModuleI18n or Collection');
     }
 }