Files
2026-06-11 18:47:38 +09:00

36 lines
1.2 KiB
PHP

<?php
if (!defined('_GNUBOARD_')) exit;
/**
* rb.custom :: general_ad_section/config.php
* 일반 광고 모듈 설정 파일
*/
$general_ad_config = array(
// 이 모듈이 가져올 배너의 위치(bn_position) 코드
'position' => 'general_main',
// --- 💡 [최종 수정] 레이아웃 및 출력 모드 설정 ---
// 1. 출력 모드 설정 ('fixed', 'slide', 'both')
'display_mode' => 'fixed', // 기본값으로 슬라이드형만 출력
// 2. 고정형 그리드 설정
'fixed_grid_columns' => 2, // 한 줄에 표시할 배너 개수
// 3. 배너 유닛 크기 및 간격 설정
'banner_width' => 180, // 슬라이드 배너 한 개의 가로 크기 (px)
'banner_height' => 80, // 배너 한 개의 세로 크기 (px)
'banner_gap' => 10, // 배너 사이의 간격 (px)
// 4. 슬라이드 옵션
'slide_options' => array(
'fx' => 'carousel', // 캐러셀 효과
'timeout' => 4000, // 각 슬라이드 표시 시간 (0이면 자동롤링 안함)
'slides' => '> .banner-unit-wrapper', // 슬라이드 될 자식 요소
'log' => false,
'allow-wrap' => true, // 무한 반복
),
);
?>