示例#1
0
 /**
  * 반대
  *
  * @param ItemEntity            $item   board item entity
  * @param MemberEntityInterface $author user instance
  * @return void
  */
 public function remove(ItemEntity $item, MemberEntityInterface $author)
 {
     $doc = $item->getDocument();
     $this->init();
     $this->counter->remove($doc->id, $author, $option);
     $this->updateCount($doc);
 }
示例#2
0
 /**
  * 반대
  *
  * @param ItemEntity            $item   board item entity
  * @param MemberEntityInterface $author user instance
  * @param string                $option 'assent' or 'dissent'
  * @return void
  */
 public function remove(ItemEntity $item, MemberEntityInterface $author, $option)
 {
     $doc = $item->getDocument();
     $this->counter->init(self::COUNTER_NAME, $option);
     $this->counter->remove($doc->id, $author, $option);
     $count = $this->count($doc->id);
     if ($option == 'assent') {
         $doc->assentCount = $count['assent'];
     } elseif ($option == 'dissent') {
         $doc->dissentCount = $count['dissent'];
     }
     $this->document->rawPut($doc);
 }
示例#3
0
 /**
  * 문서 복원
  *
  * @param ItemEntity $item board item entity
  * @return int 삭제된 문서 수
  */
 public function restore(ItemEntity $item)
 {
     return $this->document->restore($item->getDocument());
 }