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

16 lines
539 B
PHP

<?php
define('G5_IS_ADMIN', true);
require_once '../../common.php';
require_once G5_ADMIN_PATH . '/admin.lib.php';
// 💡 [추가] 코드 관리자 모듈 테이블 정의
$g5['ui_manager_table'] = G5_TABLE_PREFIX.'ui_manager';
$g5['form_category_table'] = G5_TABLE_PREFIX.'form_category';
$g5['common_lang_table'] = G5_TABLE_PREFIX.'common_lang';
$g5['form_option_history_table'] = G5_TABLE_PREFIX.'form_option_history';
if (isset($token)) {
$token = @htmlspecialchars(strip_tags($token), ENT_QUOTES);
}
run_event('admin_common');