예제 #1
0
파일: classes.php 프로젝트: Kufirc/Gazelle
<?php

if (!check_perms('users_mod')) {
    error(404);
}
View::show_header("Tests");
?>
<div class="header">
	<h2>Tests</h2>
	<?php 
TestingView::render_linkbox("classes");
?>
</div>

<div class="thin">
	<?php 
TestingView::render_classes(Testing::get_classes());
?>
</div>

<?php 
View::show_footer();
예제 #2
0
파일: comments.php 프로젝트: Kufirc/Gazelle
<?php

if (!check_perms('users_mod')) {
    error(404);
}
View::show_header("Tests");
?>

<div class="header">
	<h2>Documentation</h2>
	<?php 
TestingView::render_linkbox("comments");
?>
</div>

<div class="thin">
	<?php 
TestingView::render_missing_documentation(Testing::get_classes());
?>
</div>

<?php 
View::show_footer();