From d95c91890cee95ae31550d0e5ef2823df92ed151 Mon Sep 17 00:00:00 2001 From: siane Date: Thu, 4 Jun 2026 17:54:52 +0900 Subject: [PATCH] =?UTF-8?q?extend=20=ED=8C=8C=EC=9D=BC=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80,=20info.php=20=EB=82=B4=EC=9A=A9=20=EC=9E=91=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/html/extend/.htaccess | 1 + web/html/extend/clientip.extend.php | 4 + web/html/extend/debugbar.extend.php | 20 ++ web/html/extend/default.config.php | 12 + .../extend/g5_54version_update.extend.php | 69 +++++ web/html/extend/shop.extend.php | 84 ++++++ web/html/extend/smarteditor_upload_extend.php | 10 + web/html/extend/sms5.extend.php | 47 ++++ web/html/extend/social_login.extend.php | 47 ++++ web/html/extend/version.extend.php | 8 + web/html/theme/FT_WEB20/css/sub.css | 81 +++++- web/html/theme/FT_WEB20/sub/info.php | 140 ++++++++-- web/html/theme/FT_WEB20/sub/info_old.php | 247 ++++++++++++++++++ 13 files changed, 746 insertions(+), 24 deletions(-) create mode 100644 web/html/extend/.htaccess create mode 100644 web/html/extend/clientip.extend.php create mode 100644 web/html/extend/debugbar.extend.php create mode 100644 web/html/extend/default.config.php create mode 100644 web/html/extend/g5_54version_update.extend.php create mode 100644 web/html/extend/shop.extend.php create mode 100644 web/html/extend/smarteditor_upload_extend.php create mode 100644 web/html/extend/sms5.extend.php create mode 100644 web/html/extend/social_login.extend.php create mode 100644 web/html/extend/version.extend.php create mode 100644 web/html/theme/FT_WEB20/sub/info_old.php diff --git a/web/html/extend/.htaccess b/web/html/extend/.htaccess new file mode 100644 index 0000000..05196c0 --- /dev/null +++ b/web/html/extend/.htaccess @@ -0,0 +1 @@ +# .htaccess diff --git a/web/html/extend/clientip.extend.php b/web/html/extend/clientip.extend.php new file mode 100644 index 0000000..7628136 --- /dev/null +++ b/web/html/extend/clientip.extend.php @@ -0,0 +1,4 @@ +no_profile'); + +define('G5_USE_MEMBER_IMAGE_FILETIME', TRUE); + +// 썸네일 처리 방식, 비율유지 하지 않고 썸네일을 생성하려면 주석을 풀고 값은 false 입력합니다. ( true 또는 주석으로 된 경우에는 비율 유지합니다. ) +//define('G5_USE_THUMB_RATIO', false); \ No newline at end of file diff --git a/web/html/extend/g5_54version_update.extend.php b/web/html/extend/g5_54version_update.extend.php new file mode 100644 index 0000000..b3188ac --- /dev/null +++ b/web/html/extend/g5_54version_update.extend.php @@ -0,0 +1,69 @@ +'', 'cf_datetime'=>'', 'cf_phone'=>''); + +if (!empty($config['cf_sms_use'])) { + + $sms5 = sql_fetch("select * from {$g5['sms5_config_table']} ", false); + + // Demo 설정 + if (file_exists(G5_PATH.'/DEMO')) + { + // 받는 번호를 010-000-0000 으로 만듭니다. + $g5['sms5_demo'] = true; + + // 아이코드에 실제로 보내지 않고 가상(Random)으로 전송결과를 저장합니다. + $g5['sms5_demo_send'] = true; + } +} \ No newline at end of file diff --git a/web/html/extend/social_login.extend.php b/web/html/extend/social_login.extend.php new file mode 100644 index 0000000..8b8872b --- /dev/null +++ b/web/html/extend/social_login.extend.php @@ -0,0 +1,47 @@ +이용안내
-

이용안내

+

운영시간

  • - 운영시간 -

    1부 10:00 ~ 17:00
    2부 18:00 ~ 22:00

    + 1부 +

    10:00 ~ 17:00

    +
  • +
  • + 2부 +

    18:00 ~ 22:00

    +
  • +
  • +

    주말 및 성수기 09:30부터 입장 가능

-
-

이용요금

-
    -
  • - 구분 -
  • -
  • - 준성수기
    -

    ~ 07.03 / ~ 08.31

    -
  • -
  • - 성수기
    -

    ~ 07.24

    -
  • -
  • - 극성수기
    -

    ~ 08.17

    -
  • -
+
+

입장료

+ + + + + + + + + + + + + + + + + + + + + + + + + +
구분준성수기
~ 07.03 / ~ 08.31
성수기
~ 07.24
극성수기
~ 08.17
대인17,00022,00025,000
소인15,00020,00023,000
단체---
+ +

평상 및 용품 대여

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
구분주말, 공휴일평일(극성수기 제외)비고
평상 A90,00080,00060,000
평상 B110,00090,00080,000
평상 C130,000100,000100,000
썬베드30,00020,000
구명조끼7,0007,000140cm 이하 필수 착용
+ +

용품판매

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
구분요금비고
수영모자3,000
캡(야구모자)10,000썬캡 착용 불가
수경5,000안경 및 썬글라스 착용 불가
아쿠아슈즈10,000
수건5,000
샴푸/바디워시1,000
+
diff --git a/web/html/theme/FT_WEB20/sub/info_old.php b/web/html/theme/FT_WEB20/sub/info_old.php new file mode 100644 index 0000000..a33cebb --- /dev/null +++ b/web/html/theme/FT_WEB20/sub/info_old.php @@ -0,0 +1,247 @@ +', 1); +add_stylesheet('', 2); +add_stylesheet('', 3); +?> + + + + +
+ + + +
+

이용안내

+
+

이용안내

+ + +
    +
  • +
    +
    운영시간
    +
    + 연중무휴 +
    +
    +
  • +
  • +
    +
    이용시간
    +
    + 1부 : 12:00 ~ 16:00
    + 2부 : 18:00 ~ 22:00
    + 이용시간 내 3시간 이용 +
    +
    +
  • +
  • +
    +
    이용금액
    +
    + 4인기준 50,000원
    + 인원추가 : 10,000원 / 1인
    + 시간추가 : 20,000원 / 1시간
    + 퍼스트가든 입장료, 희가든가든피크닉 텐트 이용료, 숯, 그릴, 식기 등 모든 집기류 대여 포함
    + 고기, 음료 등 먹거리류 별도 구매(매점 이용) + +
    +
    +
  • +
+
+
+
+

이용 시 주의사항

+
+
+

이용 시 주의사항

+ +
+
    +
  • +
    + + +
    +
    +
    외부음식 반입 금지
    +
    +
    +
    +

    + 영유아 이유식 및 환자식 제외 +

    +
    +
    +
  • +
  • +
    + + +
    +
    +
    반입 불가 물품
    +
    +

    개인 버너 및 그릴, 기타 화기용품 +

    +
    +
    +
  • +
  • +
    + + +
    +
    +
    안전사고 주의
    +
    +

    + 매우 뜨거운 숯과 그릴을 이용하므로 자녀 동반 시 안전사고에 유의하시기 바랍니다. +

    +
    +
    +
  • + +
    +
+
+
+
+

예약방법

+
+
+

+ 예약방법 +

+

+ 네이버에서 '희가든 가든피크닉 검색' 또는 아래 링크 클릭 후 예약 +

+ + 예약하기 + +
+
+
+ +
+
이용방법
+
+
+
+ 이용방법 +
+ +
+
    +
  • + + 매점에서 예약 확인 후 입장 +
  • +
  • + + 매점에서 필요물품 구매 및 셀프바 이용 +
  • +
  • + + 맛있게 피크닉 즐기기 +
  • +
  • + + 쓰레기는 매점 맞은 편 분리수거장에 분리 배출 +
  • + + +
+
+
+
+ + + + \ No newline at end of file