diff options
Diffstat (limited to 'mod/diagnostics/unittester.php')
-rw-r--r-- | mod/diagnostics/unittester.php | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/mod/diagnostics/unittester.php b/mod/diagnostics/unittester.php new file mode 100644 index 000000000..d0aa0c8c4 --- /dev/null +++ b/mod/diagnostics/unittester.php @@ -0,0 +1,43 @@ +<?php + /** + * Elgg diagnostics - unit tester + * + * @package ElggDiagnostics + * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 + * @author Curverider Ltd + * @copyright Curverider Ltd 2008-2009 + * @link http://elgg.com/ + */ + + require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); + + admin_gatekeeper(); + set_context('admin'); + // Set admin user for user block + set_page_owner($_SESSION['guid']); + + $title = elgg_view_title(elgg_echo('diagnostics:unittester')); + + $tests = get_available_tests(); + $test_body = ""; + if ($tests) + { + foreach ($tests as $func => $desc) + $test_body .= elgg_view('diagnostics/test', array('function' => $func, 'description' => $desc)); + } + else + $test_body = elgg_echo('diagnostics:unittester:notests'); + + $body = elgg_view('page_elements/contentwrapper', array('body' => + elgg_echo('diagnostics:unittester:description') . + elgg_view('diagnostics/runalltests') + ) + ); + + $body .= elgg_view('page_elements/contentwrapper', array('body' => + $test_body ) + ); + + + page_draw(elgg_echo('diagnostics:unittester'),elgg_view_layout("two_column_left_sidebar", '', $title . $body)); +?>
\ No newline at end of file |