mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
a93e0dc8ef
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@54631 467b73ca-7a2a-4603-9d3b-597d59a354a9
41 lines
917 B
PHP
41 lines
917 B
PHP
<?php
|
|
|
|
/**
|
|
* Base class for URL access to development tools. Currently supports the
|
|
* TestRunner and TaskRunner.
|
|
*
|
|
* @todo documentation for how to add new unit tests and tasks
|
|
*/
|
|
class DevelopmentAdmin extends Controller {
|
|
|
|
static $url_handlers = array(
|
|
'' => 'index',
|
|
'$Action' => '$Action'
|
|
);
|
|
|
|
function index() {
|
|
return <<<HTML
|
|
<h1>sapphire development tools</h1>
|
|
<ul>
|
|
<li><a href="dev/tests">/dev/tests: Run all unit tests</a></li>
|
|
<li><a href="dev/tasks">/dev/tasks: See a list of build tasks to run</a></li>
|
|
<li><a href="db/build?flush=1">/db/build?flush=1: Rebuild the database</a></li>
|
|
</ul>
|
|
HTML;
|
|
}
|
|
|
|
function tests() {
|
|
if(isset($this->urlParams['NestedAction'])) {
|
|
Director::redirect("TestRunner/only/" . $this->urlParams['NestedAction']);
|
|
} else {
|
|
Director::redirect("TestRunner/");
|
|
}
|
|
}
|
|
|
|
function tasks($request) {
|
|
return new TaskRunner();
|
|
}
|
|
|
|
}
|
|
|
|
?>
|