묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
안읽은 쪽지 수 나오게 하려합니다.
2010.01.22 22:28
{@ $oCommunicationModel = &getModel('communication'); $output = $oCommunicationModel->getMessages("R"); } ({$output->total_count})
이렇게 하니까 [받은 쪽지함]의 전체 쪽지 수가 나오네요.
혹시 받은 쪽지 중에서도 안읽은 쪽지 수만 나오게 할 수 없을까요?
댓글 1
-
zirho
2010.01.22 22:49
$logged_info = Context::get('logged_info');$args->receiver_srl = $logged_info->member_srl;$args->readed = 'N';$output = executeQuery('communication.getNewMessage', $args);if(!count($output->data)) return;빨간 부분이 갯수입니다.$new_messages_count = count($output->data);이렇게 하시면 될거에요../modules/communication/communication.model.php 68 줄 부터 참고하시면 될거에요. -
Eris
2010.01.22 23:48
고맙습니다. 추가 쪽지 보냈는데 확인좀 부탁드릴게요