mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
3334eafcb1
See "Static configuration properties are now immutable, you must use Config API." in the 3.1 change log for details.
18 lines
301 B
PHP
18 lines
301 B
PHP
<?php
|
|
/**
|
|
* Simple controller that the installer uses to test that URL rewriting is working.
|
|
* @package framework
|
|
* @subpackage testing
|
|
*/
|
|
class InstallerTest extends Controller {
|
|
|
|
private static $allowed_actions = array(
|
|
'testrewrite'
|
|
);
|
|
|
|
public function testrewrite() {
|
|
echo "OK";
|
|
}
|
|
}
|
|
|