하루동안 획득 가능한 포인트 제한하기
[code]
/*
* 그누보드/extend/user.config.php에 삽입
*/
function chk_point($mb_id, $insert_point) {
global $g5;
$limit_point = "100";//포인트 제한.
$sql = "select SUM(po_point) as point FROM `{$g5['point_table']}` WHERE mb_id ='{$mb_id}' and TO_DAYS(po_datetime) = TO_DAYS('" . G5_TIME_YMDHIS . "')";
$today_point = sql_fetch($sql);
//100미만인 대상만 포인트 적립
if ($today_point['point'] < $limit_point) {
$point = $insert_point;
} else {
$point = 1;
}
return $point;
}
[/code]
[code]
//한번에 적용 - 원본 미수정.
//user.config.php 에 chk_point 함수 아래에 추가
$board['bo_read_point']= chk_point($member['mb_id'], $board['bo_read_point']);//읽기포인트
$board['bo_write_point']= chk_point($member['mb_id'], $board['bo_write_point']);//쓰기포인트
$board['bo_comment_point']= chk_point($member['mb_id'], $board['bo_comment_point']);//답변 및 댓글포인트
$board['bo_download_point']= chk_point($member['mb_id'], $board['bo_download_point']);//다운로드포인트
[/code]
/*
* 그누보드/extend/user.config.php에 삽입
*/
function chk_point($mb_id, $insert_point) {
global $g5;
$limit_point = "100";//포인트 제한.
$sql = "select SUM(po_point) as point FROM `{$g5['point_table']}` WHERE mb_id ='{$mb_id}' and TO_DAYS(po_datetime) = TO_DAYS('" . G5_TIME_YMDHIS . "')";
$today_point = sql_fetch($sql);
//100미만인 대상만 포인트 적립
if ($today_point['point'] < $limit_point) {
$point = $insert_point;
} else {
$point = 1;
}
return $point;
}
[/code]
[code]
//한번에 적용 - 원본 미수정.
//user.config.php 에 chk_point 함수 아래에 추가
$board['bo_read_point']= chk_point($member['mb_id'], $board['bo_read_point']);//읽기포인트
$board['bo_write_point']= chk_point($member['mb_id'], $board['bo_write_point']);//쓰기포인트
$board['bo_comment_point']= chk_point($member['mb_id'], $board['bo_comment_point']);//답변 및 댓글포인트
$board['bo_download_point']= chk_point($member['mb_id'], $board['bo_download_point']);//다운로드포인트
[/code]
댓글 6개
9년 전
오바되면 1 포인트가 적립되는 것인가요?
user.config.php 에 말고, 별도 파일로 만들어서 extend 폴더에 넣어버리면 될 것 같습니다.
저같은 경우는 user.config.php 도 그누보드 원소스으로 보고, 가능하면 건드리지 않습니다. ^^
user.config.php 에 말고, 별도 파일로 만들어서 extend 폴더에 넣어버리면 될 것 같습니다.
저같은 경우는 user.config.php 도 그누보드 원소스으로 보고, 가능하면 건드리지 않습니다. ^^
7년 전
^^
sinbi
7년 전
진서기 님, 사랑합니다.
welcome
5년 전
댓글에 한해서 제한하고 싶은데 어떻게 하면 될까요?
1년 전
메모메모..
알엠마이너스에프
9개월 전
잘보고 갑니다
게시판 목록
그누보드5 팁자료실
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 공지 | 3년 전 | 4400 | ||
| 624 | 9년 전 | 8359 | ||
| 623 | 9년 전 | 7027 | ||
| 622 |
|
9년 전 | 10744 | |
| 621 | 9년 전 | 6202 | ||
| 620 | 9년 전 | 6295 | ||
| 619 | 9년 전 | 8201 | ||
| 618 | 9년 전 | 38494 | ||
| 617 | 9년 전 | 8372 | ||
| 616 | 9년 전 | 10641 | ||
| 615 | 9년 전 | 16869 | ||
| 614 | 9년 전 | 5816 | ||
| 613 |
|
9년 전 | 7941 | |
| 612 | 9년 전 | 4979 | ||
| 611 | 9년 전 | 5301 | ||
| 610 |
|
9년 전 | 7616 | |
| 609 | 9년 전 | 9291 | ||
| 608 |
KeepItSimpleStyle
|
9년 전 | 6234 | |
| 607 |
|
9년 전 | 10712 | |
| 606 |
|
9년 전 | 12585 | |
| 605 |
|
9년 전 | 5484 | |
| 604 |
|
9년 전 | 10160 | |
| 603 |
KeepItSimpleStyle
|
9년 전 | 6360 | |
| 602 |
|
9년 전 | 5773 | |
| 601 | 9년 전 | 18295 | ||
| 600 | 9년 전 | 7355 | ||
| 599 | 9년 전 | 4419 | ||
| 598 | 9년 전 | 5360 | ||
| 597 |
|
9년 전 | 6640 | |
| 596 |
|
9년 전 | 6109 | |
| 595 | 9년 전 | 12208 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기