checkbugfree.html.php 962 B

12345678910111213141516171819202122232425262728293031323334
  1. <tr>
  2. <th class='w-100px'><?php echo $lang->convert->checkDB;?></th>
  3. <td><?php is_object($checkInfo['db']) ? printf($lang->convert->ok) : printf($lang->convert->fail);?></td>
  4. </tr>
  5. <!--
  6. <tr>
  7. <th><?php echo $lang->convert->checkTable;?></th>
  8. <td>
  9. <?php
  10. if(is_object($checkInfo['db'])) $checkInfo['table'] === true ? printf($lang->convert->ok) : printf($lang->convert->fail);
  11. ?>
  12. </td>
  13. </tr>
  14. -->
  15. <tr>
  16. <th><?php echo $lang->convert->checkPath;?></th>
  17. <td><?php $checkInfo['path'] === true ? printf($lang->convert->ok) : printf($lang->convert->fail);?></td>
  18. </tr>
  19. <tfoot>
  20. <tr>
  21. <td colspan='2' class='text-center'>
  22. <?php
  23. if($result == 'pass')
  24. {
  25. echo html::hidden('source', $source) . html::hidden('version', $version) . html::submitButton($lang->convert->execute);
  26. }
  27. else
  28. {
  29. echo html::commonButton($lang->goback, 'onclick=history.back();');
  30. }
  31. ?>
  32. </td>
  33. </tr>
  34. </tfoot>