mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
f47d5481ee
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63025 467b73ca-7a2a-4603-9d3b-597d59a354a9
83 lines
2.0 KiB
PHP
83 lines
2.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Base class for URL access to development tools. Currently supports the
|
|
* ; 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() {
|
|
$actions = array(
|
|
"build" => "Build/rebuild this environment (formerly db/build). Call this whenever you have updated your project sources",
|
|
"tests" => "See a list of unit tests to run",
|
|
"tasks" => "See a list of build tasks to run",
|
|
"viewcode" => "Read source code in a literate programming style",
|
|
);
|
|
|
|
// Web mode
|
|
if(!Director::is_cli()) {
|
|
$renderer = new DebugView();
|
|
$renderer->writeHeader();
|
|
$renderer->writeInfo("Sapphire Development Tools", Director::absoluteBaseURL());
|
|
$base = Director::baseURL();
|
|
|
|
echo '<div class="options"><ul>';
|
|
foreach($actions as $action => $description) {
|
|
echo "<li><a href=\"{$base}dev/$action\"><b>/dev/$action:</b> $description</a></li>\n";
|
|
}
|
|
|
|
$renderer->writeFooter();
|
|
|
|
// CLI mode
|
|
} else {
|
|
echo "SAPPHIRE DEVELOPMENT TOOLS\n--------------------------\n\n";
|
|
echo "You can execute any of the following commands:\n\n";
|
|
foreach($actions as $action => $description) {
|
|
echo " sake dev/$action: $description\n";
|
|
}
|
|
echo "\n\n";
|
|
}
|
|
}
|
|
|
|
function tests($request) {
|
|
return new TestRunner();
|
|
}
|
|
|
|
function tasks() {
|
|
return new TaskRunner();
|
|
}
|
|
|
|
function build() {
|
|
$renderer = new DebugView();
|
|
$renderer->writeHeader();
|
|
$renderer->writeInfo("Environment <i>re</i>Builder (formerly db/build)", Director::absoluteBaseURL());
|
|
echo "<div style=\"margin: 0 2em\">";
|
|
|
|
$da = new DatabaseAdmin();
|
|
$da->build();
|
|
|
|
echo "</div>";
|
|
$renderer->writeFooter();
|
|
}
|
|
|
|
function errors() {
|
|
Director::redirect("Debug_");
|
|
}
|
|
|
|
function viewcode($request) {
|
|
return new CodeViewer();
|
|
}
|
|
}
|
|
|
|
?>
|