function ?? 관련 질문 드립니다.
본문
안녕하세요.
날씨가 좀 찹니다^^
다름이 아니오라 궁금한 부분이 있어 질문드리옵니다.
영카트/그누보드 공통인 듯합니다만 제가 무지하여 질문드립니다.
예를들어 adm/theme.php dp
// 테마 필드 추가
if(!isset($config['cf_theme'])) {
sql_query(" ALTER TABLE `{$g5['config_table']}`
ADD `cf_theme` varchar(255) NOT NULL DEFAULT '' AFTER `cf_title` ", true);
}
$theme = get_theme_dir();
if($config['cf_theme'] && in_array($config['cf_theme'], $theme))
array_unshift($theme, $config['cf_theme']);
$theme = array_values(array_unique($theme));
$total_count = count($theme);
// 설정된 테마가 존재하지 않는다면 cf_theme 초기화
if($config['cf_theme'] && !in_array($config['cf_theme'], $theme))
sql_query(" update {$g5['config_table']} set cf_theme = '' ");
-----------------------------------------------------------------------------------------------------------
예를들어 관리자 페이지에 테마설정부분 소스입니다.
$theme = get_theme_dir(); 요
요 부분 불러오는 페이지가 어디인지 궁금합니다.
다른 어느 페이지 마다 보면 불러오는 function 페이지가 있는 듯한데
찾아봐도 잘 모르겠습니다.
고수분들의 의견 부탁드립니다.
감사합니다^^
답변 2
보통은 lib/common.lib.php 파일에 함수가 들어있지만
관리자쪽의 경우는 adm/admin.lib.php 파일에 함수가 들어있는 경우도 있습니다.
adm/admin.lib.php 파일에 있습니다.