for textyle

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6226 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2009-04-28 10:18:09 +00:00
parent 7a6123ec84
commit 97793ab921
5 changed files with 41 additions and 7 deletions

View file

@ -146,6 +146,20 @@
return (int)$total_count;
}
/**
* @brief module_srl 해당하는 댓글의 전체 갯수를 가져옴
**/
function getCommentAllCount($module_srl) {
$args->module_srl = $module_srl;
$output = executeQuery('comment.getCommentCount', $args);
debugPrint($output);
$total_count = $output->data->count;
return (int)$total_count;
}
/**
* @brief mid 해당하는 댓글을 가져옴
**/