Merge branch 'master' of github.com:gnuboard/g4s
This commit is contained in:
@ -156,23 +156,29 @@ $pg_anchor = "
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_login_minutes">현재 접속자</label></th>
|
||||
<td>
|
||||
<td colspan="3">
|
||||
<?=help('설정값 이내의 접속자를 현재 접속자로 인정')?>
|
||||
<input type="text" id="cf_login_minutes" name="cf_login_minutes" class="frm_input" value="<?=$config['cf_login_minutes']?>" size="2"> 분
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_page_rows">한페이지당 라인수</label></th>
|
||||
<td>
|
||||
<?=help('목록(리스트) 한페이지당 라인수')?>
|
||||
<input type="text" id="cf_page_rows" name="cf_page_rows" class="frm_input" value="<?=$config['cf_page_rows']?>" size="2"> 라인
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_new_rows">최근게시물 라인수</label></th>
|
||||
<td colspan="3">
|
||||
<?=help('목록 한페이지당 라인수')?>
|
||||
<input type="text" id="cf_new_rows" name="cf_new_rows" class="frm_input" value="<?=$config['cf_new_rows']?>" size="2"> 라인
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_write_pages">페이지 표시 수<strong class="sound_only">필수</strong></label></th>
|
||||
<td><input type="text" id="cf_write_pages" name="cf_write_pages" class="required numeric frm_input" required value="<?=$config['cf_write_pages']?>" size="3"> 페이지씩 표시</td>
|
||||
<th scope="row"><label for="cf_mobile_pages">모바일 페이지 표시 수<strong class="sound_only">필수</strong></label></th>
|
||||
<td colspan="3"><input type="text" id="cf_mobile_pages" name="cf_mobile_pages" class="required numeric frm_input" required value="<?=$config['cf_mobile_pages']?>" size="3"> 페이지씩 표시</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_new_skin">최근게시물 스킨<strong class="sound_only">필수</strong></label></th>
|
||||
<td>
|
||||
@ -209,7 +215,7 @@ $pg_anchor = "
|
||||
?>
|
||||
</select>
|
||||
</td>
|
||||
<th scope="row"><label for="cf_mobile_search_skin">모바일<br>검색 스킨<strong class="sound_only">필수</strong></label></th>
|
||||
<th scope="row"><label for="cf_mobile_search_skin">모바일 검색 스킨<strong class="sound_only">필수</strong></label></th>
|
||||
<td>
|
||||
<select id="cf_mobile_search_skin" name="cf_mobile_search_skin" class="required" required>
|
||||
<?
|
||||
@ -233,7 +239,7 @@ $pg_anchor = "
|
||||
?>
|
||||
</select>
|
||||
</td>
|
||||
<th scope="row"><label for="cf_mobile_connect_skin">모바일<br>접속자 스킨<strong class="sound_only">필수</strong></label></th>
|
||||
<th scope="row"><label for="cf_mobile_connect_skin">모바일 접속자 스킨<strong class="sound_only">필수</strong></label></th>
|
||||
<td>
|
||||
<select id="cf_mobile_connect_skin" name="cf_mobile_connect_skin" class="required" required>
|
||||
<?
|
||||
@ -281,6 +287,20 @@ $pg_anchor = "
|
||||
<col class="grid_6">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_delay_sec">글쓰기 간격<strong class="sound_only">필수</strong></label></th>
|
||||
<td><input type="text" id="cf_delay_sec" name="cf_delay_sec" class="required numeric frm_input" required value="<?=$config['cf_delay_sec']?>" size="3"> 초 지난후 가능</td>
|
||||
<th scope="row"><label for="cf_link_target">새창 링크</label></th>
|
||||
<td>
|
||||
<?=help('글내용중 자동 링크되는 타켓을 지정합니다.')?>
|
||||
<select id="cf_link_target" name="cf_link_target">
|
||||
<option value="_blank"<?=get_selected($config['cf_link_target'], '_blank')?>>_blank</option>
|
||||
<option value="_self"<?=get_selected($config['cf_link_target'], '_self')?>>_self</option>
|
||||
<option value="_top"<?=get_selected($config['cf_link_target'], '_top')?>>_top</option>
|
||||
<option value="_new"<?=get_selected($config['cf_link_target'], '_new')?>>_new</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_read_point">글읽기 포인트<strong class="sound_only">필수</strong></label></th>
|
||||
<td><input type="text" id="cf_read_point" name="cf_read_point" class="required frm_input" required value="<?=$config['cf_read_point']?>" size="3"> 점</td>
|
||||
@ -294,28 +314,8 @@ $pg_anchor = "
|
||||
<td><input type="text" id="cf_download_point" name="cf_download_point" class="required frm_input" required value="<?=$config['cf_download_point']?>" size="3"> 점</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_link_target">새창 링크</label></th>
|
||||
<td>
|
||||
<?=help('글내용중 자동 링크되는 타켓을 지정합니다.')?>
|
||||
<select id="cf_link_target" name="cf_link_target">
|
||||
<option value="_blank"<?=get_selected($config['cf_link_target'], '_blank')?>>_blank</option>
|
||||
<option value="_self"<?=get_selected($config['cf_link_target'], '_self')?>>_self</option>
|
||||
<option value="_top"<?=get_selected($config['cf_link_target'], '_top')?>>_top</option>
|
||||
<option value="_new"<?=get_selected($config['cf_link_target'], '_new')?>>_new</option>
|
||||
</select>
|
||||
</td>
|
||||
<th scope="row"><label for="cf_search_part">검색 단위</label></th>
|
||||
<td><input type="text" id="cf_search_part" name="cf_search_part" class="frm_input" value="<?=$config['cf_search_part']?>" size="4"> 건 단위로 검색</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_delay_sec">글쓰기 간격<strong class="sound_only">필수</strong></label></th>
|
||||
<td><input type="text" id="cf_delay_sec" name="cf_delay_sec" class="required numeric frm_input" required value="<?=$config['cf_delay_sec']?>" size="3"> 초 지난후 가능</td>
|
||||
<th scope="row"><label for="cf_write_pages">페이지 표시 수<strong class="sound_only">필수</strong></label></th>
|
||||
<td><input type="text" id="cf_write_pages" name="cf_write_pages" class="required numeric frm_input" required value="<?=$config['cf_write_pages']?>" size="3"> 페이지씩 표시</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_mobile_pages">모바일 페이지 표시 수<strong class="sound_only">필수</strong></label></th>
|
||||
<td colspan="3"><input type="text" id="cf_mobile_pages" name="cf_mobile_pages" class="required numeric frm_input" required value="<?=$config['cf_mobile_pages']?>" size="3"> 페이지씩 표시</td>
|
||||
<td colspan="3"><input type="text" id="cf_search_part" name="cf_search_part" class="frm_input" value="<?=$config['cf_search_part']?>" size="4"> 건 단위로 검색</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_image_extension">이미지 업로드 확장자</label></th>
|
||||
|
||||
4
head.php
4
head.php
@ -160,3 +160,7 @@ if ($config['cf_include_head']) {
|
||||
</div>
|
||||
<div id="container">
|
||||
<? if ((!$bo_table || $w == 's' ) && !defined("_INDEX_")) {?><h1 id="wrapper_title"><?=$g4['title']?></h1><?}?>
|
||||
<div id="text_size">
|
||||
<button>크게</button>
|
||||
<button>작게</button>
|
||||
</div>
|
||||
@ -26,7 +26,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
<tbody>
|
||||
<? for ($i=0; $i<count($list); $i++) { ?>
|
||||
<tr>
|
||||
<td><div><?=$list[$i]['name']?></div></td>
|
||||
<td><?=$list[$i]['name']?></td>
|
||||
<td class="td_datetime"><a href="<?=$list[$i]['view_href']?>"><?=$list[$i]['send_datetime']?></font></td>
|
||||
<td class="td_datetime"><a href="<?=$list[$i]['view_href']?>"><?=$list[$i]['read_datetime']?></font></td>
|
||||
<td class="td_mng"><a href="<?=$list[$i]['del_href']?>" onclick="del(this.href); return false;">삭제</a></td>
|
||||
|
||||
@ -26,7 +26,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
<tbody>
|
||||
<? for ($i=0; $i<count($list); $i++) { ?>
|
||||
<tr>
|
||||
<td><div><?=$list[$i]['name']?></div></td>
|
||||
<td><?=$list[$i]['name']?></td>
|
||||
<td class="td_datetime"><a href="<?=$list[$i]['view_href']?>"><?=$list[$i]['send_datetime']?></font></td>
|
||||
<td class="td_datetime"><a href="<?=$list[$i]['view_href']?>"><?=$list[$i]['read_datetime']?></font></td>
|
||||
<td class="td_mng"><a href="<?=$list[$i]['del_href']?>" onclick="del(this.href); return false;">삭제</a></td>
|
||||
|
||||
Reference in New Issue
Block a user