BioTorrents.de’s version of Gazelle
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.

comments.php 332B

1234567891011121314151617181920212223
  1. <?php
  2. #declare(strict_types=1);
  3. if (!check_perms('users_mod')) {
  4. error(404);
  5. }
  6. View::show_header("Tests");
  7. ?>
  8. <div class="header">
  9. <h2>Documentation</h2>
  10. <? TestingView::render_linkbox("comments"); ?>
  11. </div>
  12. <div>
  13. <? TestingView::render_missing_documentation(Testing::get_classes());?>
  14. </div>
  15. <?
  16. View::show_footer();