silverstripe-framework/dev/InstallerTest.php

18 lines
287 B
PHP

<?php
/**
* Simple controller that the installer uses to test that URL rewriting is working.
* @package sapphire
* @subpackage testing
*/
class InstallerTest extends Controller {
static $allowed_actions = array(
'testrewrite'
);
function testrewrite() {
echo "OK";
}
}
?>