2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
2008-01-09 05:18:36 +01:00
|
|
|
/**
|
|
|
|
* Simple controller that the installer uses to test that URL rewriting is working.
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2008-06-15 15:33:53 +02:00
|
|
|
* @subpackage testing
|
2008-01-09 05:18:36 +01:00
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
class InstallerTest extends Controller {
|
2011-02-13 23:14:51 +01:00
|
|
|
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $allowed_actions = array(
|
2011-02-13 23:14:51 +01:00
|
|
|
'testrewrite'
|
|
|
|
);
|
2008-03-07 02:17:14 +01:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testrewrite() {
|
2007-07-19 12:40:28 +02:00
|
|
|
echo "OK";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|