first commit 2
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
|
||||
// 1. 탭 모듈 함수가 정의된 파일을 포함합니다.
|
||||
include_once(G5_THEME_PATH.'/rb.custom/tabs/tab_module.php');
|
||||
|
||||
// 2. 탭으로 표시할 내용을 배열로 정의합니다.
|
||||
$main_tabs_config = [
|
||||
[
|
||||
'title' => '공지사항', // 탭에 표시될 이름
|
||||
'type' => 'board', // 타입: 'board' (게시판)
|
||||
'id' => 'notice', // 게시판 ID (bo_table)
|
||||
'options' => ['rows' => 5, 'subject_len' => 40] // 옵션
|
||||
],
|
||||
[
|
||||
'title' => '회사소개', // 탭에 표시될 이름
|
||||
'type' => 'content', // 타입: 'content' (콘텐츠 페이지)
|
||||
'id' => 'company', // 콘텐츠 ID (co_id)
|
||||
],
|
||||
[
|
||||
'title' => '갤러리',
|
||||
'type' => 'board',
|
||||
'id' => 'gallery',
|
||||
'options' => ['rows' => 5, 'subject_len' => 35]
|
||||
],
|
||||
];
|
||||
|
||||
// 3. 설정 배열을 인자로 하여 탭 모듈 함수를 호출하고 출력합니다.
|
||||
echo rb_tabs($main_tabs_config);
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user