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

34 lines
1.2 KiB
PHP

<?php
if (!defined('_GNUBOARD_')) exit;
/**
* rb.custom :: premium_ad_section/config.php
* 프리미엄 광고 모듈 설정 파일
*/
$premium_ad_config = array(
// 이 모듈이 가져올 배너의 위치(bn_position) 코드
'position' => 'premium_main',
// --- 💡 [최종 수정] 레이아웃 및 슬라이드 옵션을 모두 포함 ---
// 1. 고정형 그리드 설정
'fixed_grid_columns' => 6, // 한 줄에 표시할 배너 개수
// 2. 배너 유닛 크기 및 간격 설정
'banner_width' => 180, // 슬라이드 배너 한 개의 가로 크기 (px)
'banner_height' => 80, // 배너 한 개의 세로 크기 (px)
'banner_gap' => 10, // 배너 사이의 간격 (px)
// 3. 💡 [복원 및 통합] 슬라이드 옵션
'slide_options' => array(
'fx' => 'carousel', // 캐러셀 효과
'timeout' => 4000, // 각 슬라이드 표시 시간 (0이면 자동롤링 안함)
'slides' => '> .banner-unit-wrapper', // 슬라이드 될 자식 요소
'log' => false,
'allow-wrap' => true, // 무한 반복
// 'carouselVisible'는 module.php에서 'fixed_grid_columns * 2'로 동적 계산됩니다.
),
);
?>