silverstripe-framework/src/Dev/InstallerTest.php

22 lines
350 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.
*/
2016-11-29 12:31:16 +13:00
class InstallerTest extends Controller
{
2014-08-15 18:53:05 +12:00
2016-11-29 12:31:16 +13:00
private static $allowed_actions = array(
'testrewrite'
);
2016-11-29 12:31:16 +13:00
public function testrewrite()
{
echo "OK";
}
}