Example #1
0
 public function delete($con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("This object has already been deleted.");
     }
     if ($con === null) {
         $con = Propel::getConnection(SearchIndexPeer::DATABASE_NAME);
     }
     try {
         $con->begin();
         SearchIndexPeer::doDelete($this, $con);
         $this->setDeleted(true);
         $con->commit();
     } catch (PropelException $e) {
         $con->rollback();
         throw $e;
     }
 }
Example #2
0
 public function updateSearchIndex()
 {
     // update search index
     $c = new Criteria();
     $c->add(SearchIndexPeer::QUESTION_ID, $this->getId());
     SearchIndexPeer::doDelete($c);
     foreach ($this->getWords() as $word => $weight) {
         $index = new SearchIndex();
         $index->setQuestionId($this->getId());
         $index->setWord($word);
         $index->setWeight($weight);
         $index->save();
     }
 }