aboutsummaryrefslogtreecommitdiff
path: root/mod/diagnostics/views/default/diagnostics/runalltests.php
blob: 8baf3eee0ccbc24e7073ab629308e39c9ea5efcd (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
	/**
	 * Elgg diagnostics - unit tester
	 * 
	 * @package ElggDiagnostics
	 */

	$form_body .= elgg_view('input/submit', array('internalname' => 'execute', 'value' => elgg_echo('diagnostics:test:executeall')));

	echo elgg_view('input/form', array('action' => elgg_get_site_url() . "pg/diagnostics/tests/all", 'body' => $form_body));	
?>