/**
  * Exclude object from result
  *
  * @param   ChildTranslationLanguageKeyword $translationLanguageKeyword Object to remove from the list of results
  *
  * @return $this|ChildTranslationLanguageKeywordQuery The current query, for fluid interface
  */
 public function prune($translationLanguageKeyword = null)
 {
     if ($translationLanguageKeyword) {
         $this->addCond('pruneCond0', $this->getAliasedColName(TranslationLanguageKeywordTableMap::COL_LANGUAGE_ID), $translationLanguageKeyword->getLanguageId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(TranslationLanguageKeywordTableMap::COL_KEYWORD_ID), $translationLanguageKeyword->getKeywordId(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }
 /**
  * @param ChildTranslationLanguageKeyword $translationLanguageKeyword The ChildTranslationLanguageKeyword object to add.
  */
 protected function doAddTranslationLanguageKeyword(ChildTranslationLanguageKeyword $translationLanguageKeyword)
 {
     $this->collTranslationLanguageKeywords[] = $translationLanguageKeyword;
     $translationLanguageKeyword->setTranslationLanguage($this);
 }
 /**
  * Update the specified resource in storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function update($id, TranslationRequest $request)
 {
     $data = $request->all();
     $translationKeyword = TranslationKeywordQuery::create()->findPK($id);
     $translationKeyword->setCatalogId($data['CatalogId']);
     $translationKeyword->setKeyword($data['Keyword']);
     $translationKeyword->save();
     foreach ($data['Languages'] as $language_id => $translation) {
         $translationLanguageKeyword = TranslationLanguageKeywordQuery::create()->where('keyword_id = ' . $id)->where('language_id = ' . $language_id)->findOne();
         if (is_null($translationLanguageKeyword)) {
             $translationLanguageKeyword = new TranslationLanguageKeyword();
             $translationLanguageKeyword->setLanguageId($language_id);
             $translationLanguageKeyword->setKeywordId($id);
             $translationLanguageKeyword->setTranslation($translation);
             $translationLanguageKeyword->save();
         } else {
             $translationLanguageKeyword->setTranslation($translation);
             $translationLanguageKeyword->save();
         }
     }
     if ($translationKeyword->getTranslationCatalog()->getName() == 'general') {
         $this->rebuildTranslation();
     }
     flash()->success("UPDATED");
     session(['attribute' => \Lang::get('general.TRANSLATION')]);
     return redirect($this->main_page);
 }
 /**
  * Filter the query by a related \App\Models\TranslationLanguageKeyword object
  *
  * @param \App\Models\TranslationLanguageKeyword|ObjectCollection $translationLanguageKeyword the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildTranslationKeywordQuery The current query, for fluid interface
  */
 public function filterByTranslationLanguageKeyword($translationLanguageKeyword, $comparison = null)
 {
     if ($translationLanguageKeyword instanceof \App\Models\TranslationLanguageKeyword) {
         return $this->addUsingAlias(TranslationKeywordTableMap::COL_ID, $translationLanguageKeyword->getKeywordId(), $comparison);
     } elseif ($translationLanguageKeyword instanceof ObjectCollection) {
         return $this->useTranslationLanguageKeywordQuery()->filterByPrimaryKeys($translationLanguageKeyword->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByTranslationLanguageKeyword() only accepts arguments of type \\App\\Models\\TranslationLanguageKeyword or Collection');
     }
 }
 /**
  * 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\Models\TranslationLanguageKeyword $obj A \App\Models\TranslationLanguageKeyword 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->getLanguageId(), (string) $obj->getKeywordId()));
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }