/**
  * Store a newly created resource in storage.
  *
  * @return Response
  */
 public function store(TranslationRequest $request)
 {
     $data = $request->all();
     $translationKeyword = new TranslationKeyword();
     $translationKeyword->setCatalogId($data['CatalogId']);
     $translationKeyword->setKeyword($data['Keyword']);
     $translationKeyword->save();
     foreach ($data['Languages'] as $language_id => $translation) {
         $translationLanguageKeyword = new TranslationLanguageKeyword();
         $translationLanguageKeyword->setLanguageId($language_id);
         $translationLanguageKeyword->setKeywordId($translationKeyword->getId());
         $translationLanguageKeyword->setTranslation($translation);
         $translationLanguageKeyword->save();
     }
     if ($translationKeyword->getTranslationCatalog()->getName() == 'general') {
         $this->rebuildTranslation();
     }
     flash()->success("ADDED");
     session(['attribute' => \Lang::get('general.TRANSLATION')]);
     return redirect($this->main_page);
 }
 /**
  * Performs the work of inserting or updating the row in the database.
  *
  * If the object is new, it inserts it; otherwise an update is performed.
  * All related objects are also updated in this method.
  *
  * @param      ConnectionInterface $con
  * @return int             The number of rows affected by this insert/update and any referring fk objects' save() operations.
  * @throws PropelException
  * @see save()
  */
 protected function doSave(ConnectionInterface $con)
 {
     $affectedRows = 0;
     // initialize var to track total num of affected rows
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         // We call the save method on the following object(s) if they
         // were passed to this object by their corresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->aTranslationLanguage !== null) {
             if ($this->aTranslationLanguage->isModified() || $this->aTranslationLanguage->isNew()) {
                 $affectedRows += $this->aTranslationLanguage->save($con);
             }
             $this->setTranslationLanguage($this->aTranslationLanguage);
         }
         if ($this->aTranslationKeyword !== null) {
             if ($this->aTranslationKeyword->isModified() || $this->aTranslationKeyword->isNew()) {
                 $affectedRows += $this->aTranslationKeyword->save($con);
             }
             $this->setTranslationKeyword($this->aTranslationKeyword);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
                 $affectedRows += 1;
             } else {
                 $affectedRows += $this->doUpdate($con);
             }
             $this->resetModified();
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }