답변 3개
스킨파일을 보시면
<select name="sfl" id="sfl">
<?php echo get_board_sfl_select_options($sfl); ?>
</select>
get_board_sfl_select_options 제공 파일은
lib/get_data.lib.php
function get_board_sfl_select_options($sfl){
global $is_admin;
$str = '';
$str .= '제목';
$str .= '내용';
$str .= '제목+내용';
if ( $is_admin ){
$str .= '회원아이디';
$str .= '회원아이디(코)';
}
$str .= '글쓴이';
$str .= '글쓴이(코)';
return run_replace('get_board_sfl_select_options', $str, $sfl);
}
영문으로 변경한다면
스킨파일 eng 추가하시고
<select name="sfl" id="sfl">
<?php echo get_board_sfl_select_options_eng($sfl); ?>
</select>
lib/get_data.lib.php 파일에 추가하세요..
function get_board_sfl_select_options_eng($sfl){
global $is_admin;
$str = '';
$str .= 'subject';
$str .= 'content';
$str .= 'subject+content';
if ( $is_admin ){
$str .= 'Member ID';
$str .= 'Member ID (Comment)';
}
$str .= 'writer';
$str .= 'writer(comment)';
return run_replace('get_board_sfl_select_options', $str, $sfl);
}
댓글을 작성하려면 로그인이 필요합니다.
[게시판 스킨 폴더]/list.skin.php 에 있습니다. '회원아이디'로 검색
(/skin/board/~/list.skin.php or /theme/~/skin/board/~/list.skin.php)
댓글을 작성하려면 로그인이 필요합니다.
모든스킨은 스킨폴더안에 구별 되어있습니다
하여 검색스킨은 다음과같습니다.
\skin\search\basic\search.skin.php
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인