[기능] 게시판 분류를 최신글로 불러오기 > 정보공유

본문 바로가기

정보공유

일반글
그누보드팁

[기능] 게시판 분류를 최신글로 불러오기

페이지 정보

게시물QR코드

본문

그누보드의 최신글 기능을 사용하다보면 인기순, 랜덤순등 여러가지 기능을 구현해야 할 때가 있습니다.

이번에 소개할 기능은 게시판의 여러 분류중 지정된 분류를 최신글 스킨에 최신순으로 불러오는 기능을 보도록 하겠습니다.

 

사용방법은 www/lib/latest.lib.php 파일에 아래의 함수를 추가 시켜줍니다.

<?php

/* www/lib/latest.lib.php */

 

// 최신글 카테고리 데이타만 추출 

function latest_category($skin_dir="", $bo_table, $rows=10, $subject_len=40, $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;

        }

    }

 

    $cache_fwrite = false; 

    if(G5_USE_CACHE) { 

        $cache_file = G5_DATA_PATH."/cache/latest-{$bo_table}-category-{$skin_dir}-{$rows}-{$subject_len}.php"; 

 

        if(!file_exists($cache_file)) { 

            $cache_fwrite = true; 

        } else { 

            if($cache_time > 0) { 

                $filetime = filemtime($cache_file); 

                if($filetime && $filetime < (G5_SERVER_TIME - 3600 * $cache_time)) { 

                    @unlink($cache_file); 

                    $cache_fwrite = true; 

                } 

            } 

 

            if(!$cache_fwrite) 

                include_once($cache_file); 

        } 

    } 

 

    if(!G5_USE_CACHE || $cache_fwrite) { 

        $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; // 게시판 테이블 전체이름 

        $sql = " select * from {$tmp_write_table} where wr_is_comment = 0 and ca_name = '{$options}' order by wr_num 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; 

}

?>

위의 소스코드를 www/lib/latest.lib.php 파일의 제일 하단에

php 문법이 닫히는 ?> 구문전에 복사해서 넣으시면 됩니다.

 

사용방법

<?php

/* 최신글을 노출시킬 페이지 */

 

echo latest_category("스킨명", "게시판명", 출력갯수, 글자수, "분류명"); 

?>

 

사용방법 예시

<?php

/* 최신글을 노출시킬 페이지 */

 

echo latest_category("basic", "test", 10, 20 , "분류1");  

?>

위의 소스를 간단하게 설명하자면

test라는 게시판명에 설정된 분류중에서 분류1이라는

분류에 작성된 게시물을 최신순으로 불러오는 소스코드입니다.

댓글목록

등록된 댓글이 없습니다.

  • Addr.부산광역시 동구 중앙대로 319, 9층 L4호(초량동, 부산YMCA빌딩) Email. gnuwiz@naver.com
  • BR. 625-68-00172 TRC. 2019-부산해운대-1186 TEL. 0507-1382-2790
All rights reserved.