21 lines
564 B
PHP
21 lines
564 B
PHP
<?php
|
|
if (!defined('_GNUBOARD_')) exit;
|
|
/**
|
|
* rb.mod.banner :: border_anim/banner.skin.php
|
|
* 배너 그룹 스킨 (래퍼)
|
|
*/
|
|
|
|
// CSS 로드
|
|
add_stylesheet('<link rel="stylesheet" href="'.G5_URL.'/rb/rb.mod/banner/skin/border_anim/style.css">', 0);
|
|
|
|
// 배너 목록이 있으면 루프를 돌며 skin.php를 include
|
|
if (isset($banners) && is_array($banners)) {
|
|
foreach ($banners as $banner) {
|
|
include(dirname(__FILE__).'/skin.php');
|
|
}
|
|
} else if (isset($banner)) {
|
|
// 단일 배너인 경우
|
|
include(dirname(__FILE__).'/skin.php');
|
|
}
|
|
?>
|