silverstripe-framework/src/Dev/InstallerTest.php

21 lines
323 B
PHP
Raw Normal View History

<?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 {
2014-08-15 08:53:05 +02:00
private static $allowed_actions = array(
'testrewrite'
);
public function testrewrite() {
echo "OK";
}
}