[G5] 최신글 공지글/일반글 랜덤 추출 > 기술자료 | 해피정닷컴

[G5] 최신글 공지글/일반글 랜덤 추출 > 기술자료

본문 바로가기

사이트 내 전체검색

[G5] 최신글 공지글/일반글 랜덤 추출 > 기술자료

그누보드 [G5] 최신글 공지글/일반글 랜덤 추출

페이지 정보


본문

2017-06-08 기능에 문제가 확인되어 수정작업후 다시 올리겠습니다.
2017-06-12 수정 재등록
2018-05-23 적용사례를 추가
2018-07-06 랜덤추출에서 공지글 존재여부 체크로직에 심각한 오류가 발견되어 수정했습니다.


공지글만 추출하거나,  공지가 아닌 글을 체크하기 위해 코드를 만들었습니다.

1. 그누보드5 / lib / latest_noticeRand.lib.php  파일을 생성해서 아래 내용을 저장

<?php
if (!defined('_GNUBOARD_')) exit;

// 최신글 공지글 랜덤 추출
// $cache_time 캐시 갱신시간
function latest_noticeRand($skin_dir='', $bo_table, $rows=10, $subject_len=40, $cache_time=1, $options='')
{
    global $g5;

    if (!$skin_dir) $skin_dir = 'basic';

    if(preg_match('#^theme/(.+)$#', $skin_dir, $match)) {
        if (G5_IS_MOBILE) {
            $latest_skin_path = G5_THEME_MOBILE_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];
            if(!is_dir($latest_skin_path))
                $latest_skin_path = G5_THEME_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];
            $latest_skin_url = str_replace(G5_PATH, G5_URL, $latest_skin_path);
        } else {
            $latest_skin_path = G5_THEME_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];
            $latest_skin_url = str_replace(G5_PATH, G5_URL, $latest_skin_path);
        }
        $skin_dir = $match[1];
    } else {
        if(G5_IS_MOBILE) {
            $latest_skin_path = G5_MOBILE_PATH.'/'.G5_SKIN_DIR.'/latest/'.$skin_dir;
            $latest_skin_url  = G5_MOBILE_URL.'/'.G5_SKIN_DIR.'/latest/'.$skin_dir;
        } else {
            $latest_skin_path = G5_SKIN_PATH.'/latest/'.$skin_dir;
            $latest_skin_url  = G5_SKIN_URL.'/latest/'.$skin_dir;
        }
    }

    $list = array();

    $sql = " select * from {$g5['board_table']} where bo_table = '{$bo_table}' ";
    $board = sql_fetch($sql);
    $bo_subject = get_text($board['bo_subject']);

    $tmp_write_table = $g5['write_prefix'] . $bo_table; // 게시판 테이블 전체이름 

    $arr_notice = preg_replace("/\n/",',', trim($board['bo_notice'])); 
    if(!$arr_notice) $arr_notice=0; 

    $sql = " select * from {$tmp_write_table} where wr_id IN({$arr_notice}) and wr_is_comment = 0 order by rand() limit 0, {$rows} ";
    $result = sql_query($sql);
    
    for ($i=0; $row = sql_fetch_array($result); $i++) {
        $list[$i] = get_list($row, $board, $latest_skin_url, $subject_len);
    }

    if($cache_fwrite) {
        $handle = fopen($cache_file, 'w');
        $cache_content = "<?php\nif (!defined('_GNUBOARD_')) exit;\n\$bo_subject='".$bo_subject."';\n\$list=".var_export($list, true)."?>";
        fwrite($handle, $cache_content);
        fclose($handle);
    }

    ob_start();
    include $latest_skin_path.'/latest.skin.php';
    $content = ob_get_contents();
    ob_end_clean();

    return $content;
}


// 최신글 공지글 제외글 랜덤 추출
// $cache_time 캐시 갱신시간
function latest_NoNoticeRand($skin_dir='', $bo_table, $rows=10, $subject_len=40, $cache_time=1, $options='')
{
    //echo "latest_NoNoticeRand<br>";
    global $g5;

    if (!$skin_dir) $skin_dir = 'basic';

    if(preg_match('#^theme/(.+)$#', $skin_dir, $match)) {
        if (G5_IS_MOBILE) {
            $latest_skin_path = G5_THEME_MOBILE_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];
            if(!is_dir($latest_skin_path))
                $latest_skin_path = G5_THEME_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];
            $latest_skin_url = str_replace(G5_PATH, G5_URL, $latest_skin_path);
        } else {
            $latest_skin_path = G5_THEME_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];
            $latest_skin_url = str_replace(G5_PATH, G5_URL, $latest_skin_path);
        }
        $skin_dir = $match[1];
    } else {
        if(G5_IS_MOBILE) {
            $latest_skin_path = G5_MOBILE_PATH.'/'.G5_SKIN_DIR.'/latest/'.$skin_dir;
            $latest_skin_url  = G5_MOBILE_URL.'/'.G5_SKIN_DIR.'/latest/'.$skin_dir;
        } else {
            $latest_skin_path = G5_SKIN_PATH.'/latest/'.$skin_dir;
            $latest_skin_url  = G5_SKIN_URL.'/latest/'.$skin_dir;
        }
    }
    
    $list = array();
    
    $sql = " select * from {$g5['board_table']} where bo_table = '{$bo_table}' ";
    $board = sql_fetch($sql);

    // 답변글 출력제외 
    //$subqry = "&& wr_reply = ''";
    
    // 공지사항 출력제외 
    $arr_notice = preg_replace("/\n/",',', trim($board['bo_notice']));
    
    if($arr_notice) {  // 2018-07-06  해피정닷컴 수정
        $subqry = $subqry." && wr_id Not in ({$arr_notice}) ";
    }
    
    $bo_subject = get_text($board['bo_subject']);

    $tmp_write_table = $g5['write_prefix'] . $bo_table; // 게시판 테이블 전체이름

    $sql = " select * from {$tmp_write_table} where wr_is_comment = 0 {$subqry} order by rand() limit 0, {$rows} ";
    $result = sql_query($sql);
    
    for ($i=0; $row = sql_fetch_array($result); $i++) {
        $list[$i] = get_list($row, $board, $latest_skin_url, $subject_len);
    }

    if($cache_fwrite) {
        $handle = fopen($cache_file, 'w');
        $cache_content = "<?php\nif (!defined('_GNUBOARD_')) exit;\n\$bo_subject='".$bo_subject."';\n\$list=".var_export($list, true)."?>";
        fwrite($handle, $cache_content);
        fclose($handle);
    }

    ob_start();
    include $latest_skin_path.'/latest.skin.php';
    $content = ob_get_contents();
    ob_end_clean();

    return $content;
}
?>


2. 적용코드
최신글 - 공지글 포함 랜덤 추출
<?php include_once G5_LIB_PATH."/latest_noticeRand.lib.php"; ?>
<?php echo latest_noticeRand('basic', '게시판이름', 6, 40); ?>

최신글 - 공지글 제외 랜덤 추출
<?php include_once G5_LIB_PATH."/latest_noticeRand.lib.php"; ?>
<?php echo latest_NoNoticeRand('basic', '게시판이름', 6, 40); ?>


3. 적용샘플
https://www.happyjung.com/demo/latest_noticeRand/

댓글목록

등록된 댓글이 없습니다.


Total 459건 9 페이지
  • RSS
기술자료 목록
299
그누보드   10122  2017-06-29 18:46  
298
그누보드   12437  2017-06-15 11:52 ~ 2021-07-08 07:58  
297
그누보드   15364  2017-06-09 17:39  
열람
그누보드   14779  2017-06-02 00:55 ~ 2018-07-06 11:36  
295
그누보드   12813  2017-05-30 03:39  
294
그누보드   15987  2017-05-29 23:19 ~ 2019-08-12 11:18  
293
그누보드   15470  2017-05-29 18:49 ~ 2017-11-10 06:17  
292
그누보드   13452  2017-05-22 11:45 ~ 2017-09-15 00:00  
291
그누보드   10892  2017-05-18 14:44  
290
그누보드   17915  2017-05-07 13:20 ~ 2018-04-09 23:57  
289
그누보드   10246  2017-05-04 13:00 ~ 2017-05-23 00:00  
288
그누보드   11843  2017-04-26 11:48  
287
그누보드   17275  2017-04-24 12:53 ~ 2017-11-13 15:00  
286
그누보드   16618  2017-04-19 17:36 ~ 2017-07-20 00:00  
285
그누보드   16168  2017-04-13 13:43 ~ 2017-12-06 07:23  
284
그누보드   12147  2017-04-11 13:10 ~ 2018-07-17 01:49  
283
그누보드   14117  2017-03-29 07:06 ~ 2019-08-18 12:48  
282
그누보드   47037  2017-03-18 13:21 ~ 2017-03-19 00:00  
281
그누보드   34276  2017-03-16 19:09 ~ 2017-04-28 00:00  
280
그누보드   12015  2017-03-14 01:20  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.