mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-04 17:44:38 +09:00
개별 문서 댓글 알림을 차단하는 옵션 추가
This commit is contained in:
parent
7285a332b7
commit
c315a6ad10
15 changed files with 447 additions and 0 deletions
|
|
@ -669,4 +669,28 @@ class ncenterliteModel extends ncenterlite
|
|||
|
||||
return $output->data;
|
||||
}
|
||||
|
||||
function getUserIndividualBlockConfigByIndividualSrl($individual_srl = 0)
|
||||
{
|
||||
$args = new stdClass();
|
||||
$args->individual_srl = $individual_srl;
|
||||
$output = executeQuery('ncenterlite.getUserIndividualBlockConfigByIndividualSrl', $args);
|
||||
|
||||
return $output;
|
||||
}
|
||||
|
||||
function getUserIndividualBlockConfigByTargetSrl($target_srl = 0, $member_srl = null)
|
||||
{
|
||||
if(!$member_srl)
|
||||
{
|
||||
$member_srl = $this->user->member_srl;
|
||||
}
|
||||
|
||||
$args = new stdClass();
|
||||
$args->target_srl = $target_srl;
|
||||
$args->member_srl = $member_srl;
|
||||
$output = executeQuery('ncenterlite.getUserIndividualBlockConfigByTargetSrl', $args);
|
||||
|
||||
return $output;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue