You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

40 lines
2.1 KiB

  1. <?php defined('PHALAPI_INSTALL') || die('no access'); ?>
  2. <?php include dirname(__FILE__) . DIRECTORY_SEPARATOR . '_header.php'; ?>
  3. <div class="radius bg bouncein window window_big">
  4. <div class="window_title t_normal">
  5. <span class="icon-circle"> </span>
  6. <span class="icon-circle"></span>
  7. <span class="margin-small-left">安装向导</span>
  8. </div>
  9. <div class="padding-large text-black">
  10. <h1 class="margin-small-bottom" >环境检查</h1>
  11. <h5 class="margin-big-bottom ">为了确保框架正常使用, 您的服务器需要满足以下系统需求的运行环境</h5>
  12. <table class="table table-bordered">
  13. <tbody>
  14. <?php $num = 0; ?>
  15. <?php foreach ($checkList as $item) { ?>
  16. <tr class="<?php if ($item['status'] == -1) echo 'alert alert-danger'; else if ($item['status'] == 1) echo 'alert alert-success';?>">
  17. <th style="vertical-align : middle;" align="center" scope="row"><?php echo ++ $num; ?></th>
  18. <th style="vertical-align : middle;"><?php echo $item['name']; ?></th>
  19. <td style="vertical-align : middle; font-size: 12px"><?php echo $item['tip']; ?></td>
  20. <td align="center" style="vertical-align : middle;"><?php
  21. if ($item['status'] == 1) {
  22. echo '<span aria-hidden="true" class="text-green icon-check-circle"></span>';
  23. } else {
  24. echo '<span aria-hidden="true" class="text-red icon-times-circle"></span>';
  25. }
  26. ?></td>
  27. </tr>
  28. <?php } ?>
  29. </tbody>
  30. </table>
  31. <div class="margin-big-top" >
  32. <a class="button bg-yellow margin-small-right" href=".?step=2" role="button"> 下一步 </a>
  33. <a class="button margin-small-right" href=".?step=0" role="button"> 上一步 </a>
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. <?php include dirname(__FILE__) . DIRECTORY_SEPARATOR . '_footer.php'; ?>