mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 18:51:41 +09:00
휴지통으로 댓글을 이동할 때 알림 삭제기능 추가
This commit is contained in:
parent
0d8b8a51dd
commit
a96955a12e
4 changed files with 64 additions and 0 deletions
|
|
@ -755,6 +755,24 @@ class ncenterliteModel extends ncenterlite
|
|||
return $output->data;
|
||||
}
|
||||
|
||||
function getNotifyListByCommentSrl($document_srl, $comment_srl)
|
||||
{
|
||||
if($comment_srl === null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
$args = new stdClass();
|
||||
$args->document_srl = $document_srl;
|
||||
$args->comment_srl = $comment_srl;
|
||||
$output = executeQueryArray('ncenterlite.getNotifyListByCommentSrl', $args);
|
||||
if(!$output->toBool())
|
||||
{
|
||||
return $output;
|
||||
}
|
||||
|
||||
return $output->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 알림에서 member_srl 만 정리해서 보내준다.
|
||||
* @param int $srl
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue