Blame view

framework/dev/InstallerTest.php 301 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?php
  /**
   * Simple controller that the installer uses to test that URL rewriting is working.
   * @package framework
   * @subpackage testing
   */
  class InstallerTest extends Controller {
  	
  	private static $allowed_actions = array(
  		'testrewrite'
  	);
  
  	public function testrewrite() {
  		echo "OK";
  	}
  }