Update pgkcp.lnk.php

This commit is contained in:
Namhyeon Go 2019-10-13 00:42:09 +09:00 committed by GitHub
parent d3e9af255b
commit bb09665916
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,6 +10,7 @@
if(!defined("_DEF_RSF_")) set_error_exit("do not allow access"); if(!defined("_DEF_RSF_")) set_error_exit("do not allow access");
loadHelper("json.format"); loadHelper("json.format");
loadHelper("webpagetool");
if(!check_function_exists("get_pgkcp_config")) { if(!check_function_exists("get_pgkcp_config")) {
function get_pgkcp_dir() { function get_pgkcp_dir() {
@ -100,3 +101,12 @@ if(!check_function_exists("load_pgkcp_library")) {
} }
} }
} }
if(!check_function_exists("install_pgkcp")) {
function install_pgkcp() {
$response = get_web_page("https://admin8.kcp.co.kr/assist/download/sampleDownload", "get", array(
"type1" => "FM01",
"type2" => "FS04"
));
}
}