묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
function triggerUpdateDownloadedCount($obj) {
$oResourceModel = &getModel('resource');
자료실 resource 모듈 다운로드 카운트 변형질문!!
2015.08.12 00:57
일단읽어주셔서 감사드려요 ㅎㅎ
다름이 아니라 자료실 resource 모듈 다운로드 카운트를 다운로드횟수가아닌 조회수로 변경하고싶은데 어딜 어떻게 바꿔야할지 파악이 안되네요. ㅠㅠ downloaded인거같인한데 막막하네요...
어떻게 바꿔야 조회수로 바뀔까여 버전별로 조회수로 보고싶은데 ^^ 당연히 아이피당 1번만 올라가야되욤 ^^ 아시는분 답변 부탁드려요 ^^
끄읏...ㅋ
------------------- 해당 트리거입니다.
function triggerUpdateDownloadedCount($obj) {
$oResourceModel = &getModel('resource');
$args->item_srl = $obj->upload_target_srl;
$output = executeQuery('resource.getItemByItemSrl', $args);
if(!$output->data) return new Object();
$output = executeQuery('resource.getItemByItemSrl', $args);
if(!$output->data) return new Object();
$item = $output->data;
$args->resource_srl = $item->resource_srl;
$args->module_srl = $item->module_srl;
$args->resource_srl = $item->resource_srl;
$args->module_srl = $item->module_srl;
$output = executeQuery('resource.updateItemDownloadedCount', $args);
$output = executeQuery('resource.updatePackageDownloadedCount', $args);
$output = executeQuery('resource.updatePackageDownloadedCount', $args);
return new Object();
}
}
해당 트리거는 다운로드를 받았을때만 작동하는 트리거 같아요.
해당 트리거를 사용하지 않고, 다른쪽의 방법을 알아봐야할것 같은데요 ㅎ