글 추천을 하면 해당글 작성자에게 포인트 지급 HOOK 사용됨
페이지 정보
작성일 23-03-29 14:25
본문
extend/user.config.php 파일에 추가
// 글 작성자에게 포인트 지급 add_event('bbs_increase_good_json', 'good_insert_point', 10, 3); function good_insert_point($bo_table, $wr_id, $good) { global $g5, $member; $point = 200; // 추천포인트 if($good == 'good') { $tmp_write_table = $g5['write_prefix'] . $bo_table; $mb = sql_fetch(" select mb_id from {$tmp_write_table} where wr_id = '$wr_id' "); insert_point($mb['mb_id'], $point, $member['mb_nick'].'님이 추천', $bo_table, $wr_id, '추천'); } }
추천
0
비추천
0
- 이전글 PHP 시간표시를 SNS형식으로 출력하기 23.03.31
- 다음글 hook 기능을 이용한 글 이동시 안내 쪽지 발송 23.03.29