Merge branch 'master' of github.com:gnuboard/g4s
This commit is contained in:
@ -2,9 +2,13 @@
|
||||
if (!defined('_GNUBOARD_')) exit;
|
||||
|
||||
// 최신글 추출
|
||||
function latest($skin_dir='', $bo_table, $rows=10, $subject_len=40, $options='')
|
||||
function latest($skin_dir='', $bo_table, $rows=10, $subject_len=40, $position='left')
|
||||
{
|
||||
global $g4;
|
||||
static $lt_count=0;
|
||||
|
||||
if ($position == 'right')
|
||||
$lt_count++;
|
||||
|
||||
if (!$skin_dir) $skin_dir = 'basic';
|
||||
$latest_skin_path = skin_path().'/latest/'.$skin_dir;
|
||||
@ -30,7 +34,6 @@ function latest($skin_dir='', $bo_table, $rows=10, $subject_len=40, $options='')
|
||||
|
||||
$handle = fopen($cache_file, "w");
|
||||
$cache_content = "<?php\nif (!defined('_GNUBOARD_')) exit;\n\$bo_subject=\"".get_text($board['bo_subject'])."\";\n\$list=".var_export($list, true)."?>";
|
||||
//$cache_content = all_trim($cache_content);
|
||||
fwrite($handle, $cache_content);
|
||||
fclose($handle);
|
||||
}
|
||||
@ -43,30 +46,5 @@ function latest($skin_dir='', $bo_table, $rows=10, $subject_len=40, $options='')
|
||||
ob_end_clean();
|
||||
|
||||
return $content;
|
||||
|
||||
/*
|
||||
$latest_skin_path = skin_path().'/latest/'.$skin_dir;
|
||||
|
||||
$list = array();
|
||||
|
||||
$sql = " select * from {$g4['board_table']} where bo_table = '$bo_table'";
|
||||
$board = sql_fetch($sql);
|
||||
|
||||
$tmp_write_table = $g4['write_prefix'] . $bo_table; // 게시판 테이블 전체이름
|
||||
//$sql = " select * from $tmp_write_table where wr_is_comment = 0 order by wr_id desc limit 0, $rows ";
|
||||
// 위의 코드 보다 속도가 빠름
|
||||
$sql = " select * from $tmp_write_table where wr_is_comment = 0 order by wr_num limit 0, $rows ";
|
||||
//explain($sql);
|
||||
$result = sql_query($sql);
|
||||
for ($i=0; $row = sql_fetch_array($result); $i++)
|
||||
$list[$i] = get_list($row, $board, $latest_skin_path, $subject_len);
|
||||
|
||||
ob_start();
|
||||
include $latest_skin_path.'/latest.skin.php';
|
||||
$content = ob_get_contents();
|
||||
ob_end_clean();
|
||||
|
||||
return $content;
|
||||
*/
|
||||
}
|
||||
?>
|
||||
2
main.php
2
main.php
@ -17,7 +17,7 @@ for ($i=0; $row=sql_fetch_array($result); $i++) {
|
||||
|
||||
// 사용방법
|
||||
// latest(스킨, 게시판아이디, 출력라인, 글자수);
|
||||
echo latest("neo", $row['bo_table'], 5, 25);
|
||||
echo latest("neo", $row['bo_table'], 5, 25, 'right');
|
||||
}
|
||||
?>
|
||||
<!-- 메인화면 최신글 끝 -->
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
?>
|
||||
|
||||
<div class="lt">
|
||||
<div class="lt" style="<?=$lt_count%2==0?'margin-left:20px;':'';?>">
|
||||
<strong class="lt_title"><a href="<?=$g4['bbs_path']?>/board.php?bo_table=<?=$bo_table?>"><?=$bo_subject?></a></strong>
|
||||
<ul>
|
||||
<? for ($i=0; $i<count($list); $i++) { ?>
|
||||
|
||||
@ -24,35 +24,33 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
</section>
|
||||
|
||||
<script>
|
||||
$(function(){
|
||||
$omi = $('#ol_id');
|
||||
$omp = $('#ol_pw');
|
||||
$omp.css('display','inline-block');
|
||||
$omp.css('width',124);
|
||||
$omi_label = $('#ol_idlabel');
|
||||
$omp_label = $('#ol_pwlabel');
|
||||
$omi_label.addClass('ol_idlabel');
|
||||
$omp_label.addClass('ol_pwlabel');
|
||||
$omi.focus(function() {
|
||||
$omi_label.css('visibility','hidden');
|
||||
});
|
||||
$omp.focus(function() {
|
||||
$omp_label.css('visibility','hidden');
|
||||
});
|
||||
$omi.blur(function() {
|
||||
$this = $(this);
|
||||
if($this.attr('id') == "ol_id" && $this.attr('value') == "") $omi_label.css('visibility','visible');
|
||||
});
|
||||
$omp.blur(function() {
|
||||
$this = $(this);
|
||||
if($this.attr('id') == "ol_pw" && $this.attr('value') == "") $omp_label.css('visibility','visible');
|
||||
});
|
||||
$omi = $('#ol_id');
|
||||
$omp = $('#ol_pw');
|
||||
$omp.css('display','inline-block');
|
||||
$omp.css('width',124);
|
||||
$omi_label = $('#ol_idlabel');
|
||||
$omp_label = $('#ol_pwlabel');
|
||||
$omi_label.addClass('ol_idlabel');
|
||||
$omp_label.addClass('ol_pwlabel');
|
||||
$omi.focus(function() {
|
||||
$omi_label.css('visibility','hidden');
|
||||
});
|
||||
$omp.focus(function() {
|
||||
$omp_label.css('visibility','hidden');
|
||||
});
|
||||
$omi.blur(function() {
|
||||
$this = $(this);
|
||||
if($this.attr('id') == "ol_id" && $this.attr('value') == "") $omi_label.css('visibility','visible');
|
||||
});
|
||||
$omp.blur(function() {
|
||||
$this = $(this);
|
||||
if($this.attr('id') == "ol_pw" && $this.attr('value') == "") $omp_label.css('visibility','visible');
|
||||
});
|
||||
|
||||
$("#auto_login").click(function(){
|
||||
if (this.checked) {
|
||||
this.checked = confirm("자동로그인을 사용하시면 다음부터 회원아이디와 패스워드를 입력하실 필요가 없습니다.\n\n공공장소에서는 개인정보가 유출될 수 있으니 사용을 자제하여 주십시오.\n\n자동로그인을 사용하시겠습니까?");
|
||||
}
|
||||
});
|
||||
$("#auto_login").click(function(){
|
||||
if (this.checked) {
|
||||
this.checked = confirm("자동로그인을 사용하시면 다음부터 회원아이디와 패스워드를 입력하실 필요가 없습니다.\n\n공공장소에서는 개인정보가 유출될 수 있으니 사용을 자제하여 주십시오.\n\n자동로그인을 사용하시겠습니까?");
|
||||
}
|
||||
});
|
||||
|
||||
function fhead_submit(f)
|
||||
|
||||
Reference in New Issue
Block a user