silverstripe-framework/dev/InstallerTest.php

18 lines
300 B
PHP
Raw Normal View History

<?php
/**
* Simple controller that the installer uses to test that URL rewriting is working.
* @package framework
* @subpackage testing
*/
class InstallerTest extends Controller {
2014-08-15 08:53:05 +02:00
private static $allowed_actions = array(
'testrewrite'
);
public function testrewrite() {
echo "OK";
}
}