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