silverstripe-framework/dev/DevelopmentAdmin.php
Ingo Schommer 60860cc1b9 MINOR Unified @package PHPdoc (added where missing, removed duplicates)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@56212 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-06-15 13:33:53 +00:00

48 lines
1.1 KiB
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
* @package sapphire
* @subpackage dev
*/
class DevelopmentAdmin extends Controller {
static $url_handlers = array(
'' => 'index',
'$Action' => '$Action'
);
function index() {
$renderer = new DebugView();
$renderer->writeHeader();
echo <<<HTML
<div class="info"><h1>Sapphire Development Tools</h1></div>
<div class="options">
<ul>
<li><a href="tests">/dev/tests: See a list of unit tests to run</a></li>
<li><a href="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>
</div>
HTML;
$renderer->writeFooter();
}
function tests() {
if(isset($this->urlParams['NestedAction'])) {
Director::redirect("TestRunner/only/" . $this->urlParams['NestedAction']);
} else {
Director::redirect("TestRunner/");
}
}
function tasks($request) {
return new TaskRunner();
}
}
?>