mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 02:46:30 +00:00
23 lines
312 B
PHP
23 lines
312 B
PHP
|
<?
|
||
|
|
||
|
if (!check_perms('users_mod')) {
|
||
|
error(404);
|
||
|
}
|
||
|
|
||
|
View::show_header("Tests");
|
||
|
|
||
|
?>
|
||
|
|
||
|
<div class="header">
|
||
|
<h2>Documentation</h2>
|
||
|
<? TestingView::render_linkbox("comments"); ?>
|
||
|
</div>
|
||
|
|
||
|
<div class="thin">
|
||
|
<? TestingView::render_missing_documentation(Testing::get_classes());?>
|
||
|
</div>
|
||
|
|
||
|
<?
|
||
|
View::show_footer();
|
||
|
|