AvocadoAmber/AvocadoEdition_Light/install/index.php

67 lines
2 KiB
PHP
Raw Normal View History

2022-09-17 20:50:50 +09:00
<?php
2024-09-23 11:07:19 +09:00
include_once "../config.php";
2024-09-19 20:48:52 +09:00
$theme_1 = "#BEBE8E";
$theme_2 = "#7F7F5F";
$theme_3 = "#7C7C4C";
$theme_4 = "#b0c4de";
$theme_5 = "#727F99";
$theme_6 = "#7488B2";
$title = G5_VERSION . " 라이센스 확인 1/3";
2024-09-23 11:41:17 +09:00
if (version_compare(PHP_VERSION, '5.6.0', '<')) {
echo "<h1>php 버전이 지원하는 버전보다 낮습니다.</h1>" . PHP_EOL;
echo "<p>지원하는 최소 php 버전은 5.6.0 이상입니다.</p>" . PHP_EOL;
echo "<p>현재 php 버전은 <b>" . PHP_VERSION . "</b> 입니다.</p>" . PHP_EOL;
exit();
}
2024-09-23 11:07:19 +09:00
include_once "./install.inc.php";
2022-09-17 20:50:50 +09:00
if ($exists_data_dir && $write_data_dir) {
2024-09-19 20:48:52 +09:00
// 필수 모듈 체크
2024-09-23 11:41:17 +09:00
include_once "./library.check.php";
2024-09-19 20:48:52 +09:00
?>
<div class="ins_inner">
2022-09-17 20:50:50 +09:00
<p>
2024-09-19 20:48:52 +09:00
<strong class="st_strong">라이센스(License) 내용을 반드시 확인하십시오.</strong><br>
라이센스에 동의하시는 경우에만 설치가 진행됩니다.
2022-09-17 20:50:50 +09:00
</p>
<div class="ins_ta ins_license">
2024-09-19 20:48:52 +09:00
<textarea name="textarea" id="ins_license"
readonly><?php echo implode('', file('./AVOCADO.LICENSE.txt')); ?></textarea>
2022-09-17 20:50:50 +09:00
</div>
2024-09-19 20:48:52 +09:00
<p>
<strong class="st_strong">그누보드 라이센스</strong><br>
라이센스에 동의하시는 경우에만 설치가 진행됩니다.
2022-09-17 20:50:50 +09:00
</p>
2024-09-19 20:48:52 +09:00
<div class="ins_ta ins_license">
<textarea name="textarea" id="ins_license" readonly><?php echo implode('', file('./LICENSE.txt')); ?></textarea>
2022-09-17 20:50:50 +09:00
</div>
2024-09-19 20:48:52 +09:00
<form action="./install_config.php" method="post" onsubmit="return frm_submit(this);">
<div id="ins_agree">
<label for="agree">동의합니다.</label>
<input type="checkbox" name="agree" value="동의함" id="agree">
</div>
<div class="inner_btn">
<input type="submit" value="다음">
</div>
</form>
</div>
<script>
function frm_submit(f) {
if (!f.agree.checked) {
2022-09-17 20:50:50 +09:00
alert("라이센스 내용에 동의하셔야 설치가 가능합니다.");
return false;
2024-09-19 20:48:52 +09:00
}
return true;
2022-09-17 20:50:50 +09:00
}
2024-09-19 20:48:52 +09:00
</script>
<?php
2024-09-23 11:41:17 +09:00
}
2024-09-23 11:07:19 +09:00
include_once "./install.inc2.php";