mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
cc496ad4f7
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@60362 467b73ca-7a2a-4603-9d3b-597d59a354a9
55 lines
1.3 KiB
PHP
55 lines
1.3 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',
|
|
'$Action//$Action/$ID' => 'handleAction',
|
|
);
|
|
|
|
function index() {
|
|
$renderer = new DebugView();
|
|
$renderer->writeHeader();
|
|
$renderer->writeInfo("Sapphire Development Tools", Director::absoluteBaseURL());
|
|
$base = Director::baseURL();
|
|
echo <<<HTML
|
|
<div class="options">
|
|
<ul>
|
|
<li><a href="{$base}dev/tests">/dev/tests: See a list of unit tests to run</a></li>
|
|
<li><a href="{$base}dev/tasks">/dev/tasks: See a list of build tasks to run</a></li>
|
|
<li><a href="{$base}dev/viewcode">/dev/viewcode: Read source code in a literate programming style</a></li>
|
|
<li><a href="{$base}db/build?flush=1">/db/build?flush=1: Rebuild the database</a></li>
|
|
</ul>
|
|
</div>
|
|
HTML;
|
|
$renderer->writeFooter();
|
|
}
|
|
|
|
function tests($request) {
|
|
return new TestRunner();
|
|
}
|
|
|
|
function tasks() {
|
|
return new TaskRunner();
|
|
}
|
|
|
|
function errors() {
|
|
Director::redirect("Debug_");
|
|
}
|
|
|
|
function viewcode($request) {
|
|
return new CodeViewer();
|
|
}
|
|
}
|
|
|
|
?>
|