묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원이 작성한 작성글수와 댓글 수를 확인하는 방법이 있나요?
2015.08.30 19:20
회원아이디를 클릭하면 작성글 추적 및 작성댓글 추적이 있습니다.
근데 이건 리스트로만 나오지 몇개의 글이 작성이 되었는지 알 수가 없더라구요
일일이 수십게 되는 걸 셀 수도 없고 ;;;
다른 방법이 있나해서요~
{@ $oDocumentModel = getModel('document');
$count_document = $oDocumentModel->getDocumentCountByMemberSrl($oDocument->get('member_srl'));}
{@ $oCommentModel = getModel('comment');
$count_comment = $oCommentModel->getCommentCountByMemberSrl($oDocument->get('member_srl'));}
문서수: {$count_document}
댓글수: {$count_comment}
문서 내에서 사용할 땐 이런식으로 구현하시면됩니다. 회원을 클릭했을 때 보여주고 싶을땐 빨간색 부분(회원의 고유번호)을 적당히 가공하셔서 구현하시면 될꺼같네요.