AvocadoAmber/AvocadoEdition_Light/lib/latest.lib.php

67 lines
1.9 KiB
PHP
Raw Normal View History

2022-09-17 20:50:50 +09:00
<?php
2024-09-19 20:57:39 +09:00
if (!defined('_GNUBOARD_'))
exit;
2022-09-17 20:50:50 +09:00
// 최신글 추출
// $cache_time 캐시 갱신시간
2024-09-19 20:57:39 +09:00
function latest($skin_dir = '', $bo_table, $rows = 10, $subject_len = 40, $cache_time = 1, $options = '')
2022-09-17 20:50:50 +09:00
{
2024-09-19 20:57:39 +09:00
global $g5;
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
if (!$skin_dir)
$skin_dir = 'basic';
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
$latest_skin_path = G5_SKIN_PATH . '/latest/' . $skin_dir;
$latest_skin_url = G5_SKIN_URL . '/latest/' . $skin_dir;
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
$cache_fwrite = false;
$cache_file = null;
if (G5_USE_CACHE) {
$cache_file = G5_DATA_PATH . "/cache/latest-{$bo_table}-{$skin_dir}-{$rows}-{$subject_len}.php";
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
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;
}
}
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
if (!$cache_fwrite)
include($cache_file);
}
}
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
if (!G5_USE_CACHE || $cache_fwrite) {
$list = array();
2022-09-17 20:50:50 +09:00
2024-09-30 01:58:32 +09:00
$sql = "SELECT * FROM {$g5['board_table']} where bo_table = '{$bo_table}' ";
2024-09-19 20:57:39 +09:00
$board = sql_fetch($sql);
$bo_subject = get_text($board['bo_subject']);
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
$tmp_write_table = $g5['write_prefix'] . $bo_table; // 게시판 테이블 전체이름
2024-09-30 01:58:32 +09:00
$sql = "SELECT * FROM {$tmp_write_table} where wr_is_comment = 0 order by wr_num limit 0, {$rows} ";
2024-09-19 20:57:39 +09:00
$result = sql_query($sql);
for ($i = 0; $row = sql_fetch_array($result); $i++) {
$list[$i] = get_list($row, $board, $latest_skin_url, $subject_len);
}
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
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);
}
}
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
ob_start();
include $latest_skin_path . '/latest.skin.php';
$content = ob_get_contents();
ob_end_clean();
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
return $content;
2022-09-17 20:50:50 +09:00
}