mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
18 lines
293 B
PHP
18 lines
293 B
PHP
<?php
|
|
/**
|
|
* Simple controller that the installer uses to test that URL rewriting is working.
|
|
* @package framework
|
|
* @subpackage testing
|
|
*/
|
|
class InstallerTest extends Controller {
|
|
|
|
static $allowed_actions = array(
|
|
'testrewrite'
|
|
);
|
|
|
|
public function testrewrite() {
|
|
echo "OK";
|
|
}
|
|
}
|
|
|