묻고답하기
특정 게시판에서 댓글을 달면 자동으로 추천이 되게 하고 싶습니다.
2009.01.29 15:41
댓글을 적고나서 등록을 클릭하면 댓글 등록과 동시에 추천이 되게 하고 싶습니다.
어떻게 하면 될까요?
댓글 4
-
◀CGlink▶
2009.01.29 15:43
-
뮤랑이
2009.01.29 15:45
관심가져 주신것만 해도 감사하죠..ㅎㅎ
그런데 이건 많이 쓰이는 방식은 아니라 아이디어 게시판엔 못올렸네요..^^ -
SMaker
2009.01.29 17:38
/modules/document/document.controller.php
/**
* @brief 해당 document의 댓글 수 증가
* 댓글수를 증가시키면서 수정 순서와 수정일, 수정자를 등록
**/
function updateCommentCount($document_srl, $comment_count, $last_updater, $comment_inserted = false) {
$args->document_srl = $document_srl;
$args->comment_count = $comment_count;if($comment_inserted) {
$args->update_order = -1*getNextSequence();
$args->last_updater = $last_updater;
}return executeQuery('document.updateCommentCount', $args);
}
이 부분을,
/**
* @brief 해당 document의 댓글 수 증가
* 댓글수를 증가시키면서 수정 순서와 수정일, 수정자를 등록
**/
function updateCommentCount($document_srl, $comment_count, $last_updater, $comment_inserted = false) {
$args->document_srl = $document_srl;
$args->comment_count = $comment_count;if($comment_inserted) {
$args->update_order = -1*getNextSequence();
$args->last_updater = $last_updater;$this->updateVotedCount($document_srl, $point = 1)
}return executeQuery('document.updateCommentCount', $args);
}return executeQuery('document.updateCommentCount', $args);
}
붉은 부분이 추가된 부분입니다. -
뮤랑이
2009.01.29 17:52
감사합니다..^^
그런데 이걸 적용하면 전 게시판에 적용되겠네요..ㅎㅎ;
집에가서 연구좀 해봐야 겠어요..
댓글달때 추천/비추천을 필수선택하도록 하고 댓글등록과 동시에 추/비추가 되도록...
방법이 아니라 죄송.^^