묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
신고시 관리자에게 쪽지가 오도록 할수있나요?
2012.08.25 02:41
게시물이나 댓글 신고시 관리자에게 쪽지가 오도록 처리하고 싶습니다.
제가 사용하는 버전은 1.5.3이구요..
신고된 글번호나 주소같은게 쪽지로 오게끔 하고 싶어요..
그걸 클릭하면 그글이 뜬다던가 하면 더 편리하겠지만 그렇게까지는 안되더라도
관리자가 어떤글이나 댓글이 문제가 되는지 바로알수있게 하고싶습니다
답변주시면 감사하겠습니다ㅠㅠ
xe - modules - document - document.controller.php 열고
line 1019 쯤에
$this->setMessage('success_declared');
이것 바로 위에
$content = sprintf('신고 게시물은 <a href="http://홈페이지/%d">%d</a>', $document_srl, $document_srl);
$oCommunicationController = &getController('communication');
$oCommunicationController->sendMessage($member_srl, 4, '메세지제목', $content);
이것 삽입
대충 이런식으로 하면 됩니다.......
이건 게시물의 경우이고
댓글의 경우는 comment 모듈에서 같은 방식으로
또 작업을 해줘야 합니다..........