묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
'신고' 버튼만들기
2011.12.21 14:14
이 게시물을.... 누르면 신고 등등이 나오잖아요
게시판보면 목록,수정,삭제 등등처럼 버튼으로 신고버튼을 만들고싶은대요 어떻게해야하나요
소스한줄만 짜주세요 ㅠㅠ
댓글 2
-
카이네드
2011.12.21 14:23
-
키스미베이베
2011.12.21 14:26
추천이아닌 신고버튼은 어떻게해야하나요 ㅜㅜ -
송동우
2011.12.21 14:36
view_document.html 열고
content 나오는 곳 바로 밑에
<a href="#" onclick="doCallModuleAction('document','procDocumentDeclare','{$document_srl}');return false;" class="button"><span>{$menu_str = Context::getLang('cmd_declare')}</span></a>
이걸 추가해 보세요
신고버튼이 나타날 겁니다.
-
키스미베이베
2011.12.22 11:24
역시 송동우님 답변은 항상 명쾌합니다 ^^
<button type="button" onclick="doCallModuleAction('document','procDocumentVoteUp','{$document_srl}');return false;">
{$lang->cmd_vote} {$oDocument->get('voted_count')}
</button>
{$oDocument->get('voted_count')} <- 추천수 표시입니다.