AvocadoAmber/AvocadoEdition_Light/install/index.php

64 lines
2 KiB
PHP

<?php
include_once "../config.php";
$theme_1 = "#BEBE8E";
$theme_2 = "#7F7F5F";
$theme_3 = "#7C7C4C";
$theme_4 = "#b0c4de";
$theme_5 = "#727F99";
$theme_6 = "#7488B2";
$title = G5_VERSION . " 라이센스 확인 1/3";
if (version_compare(PHP_VERSION, '5.6.0', '<')) {
echo "<h1>php 버전이 지원하는 버전보다 낮습니다.</h1><p>권장 php 버전은 7.4 입니다.</p><p>최소 php 버전은 5.6.0이며 최소 권장 버전은 5.6.22 이상입니다.</p>";
exit();
}
include_once "./install.inc.php";
if ($exists_data_dir && $write_data_dir) {
// 필수 모듈 체크
include_once "./library.check.php";
?>
<div class="ins_inner">
<p>
<strong class="st_strong">라이센스(License) 내용을 반드시 확인하십시오.</strong><br>
라이센스에 동의하시는 경우에만 설치가 진행됩니다.
</p>
<div class="ins_ta ins_license">
<textarea name="textarea" id="ins_license"
readonly><?php echo implode('', file('./AVOCADO.LICENSE.txt')); ?></textarea>
</div>
<p>
<strong class="st_strong">그누보드 라이센스</strong><br>
라이센스에 동의하시는 경우에만 설치가 진행됩니다.
</p>
<div class="ins_ta ins_license">
<textarea name="textarea" id="ins_license" readonly><?php echo implode('', file('./LICENSE.txt')); ?></textarea>
</div>
<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) {
alert("라이센스 내용에 동의하셔야 설치가 가능합니다.");
return false;
}
return true;
}
</script>
<?php
}
include_once "./install.inc2.php";