Index: trunk/phase3/maintenance/tests/selenium/SimpleSeleniumConfig.php |
— | — | @@ -0,0 +1,15 @@ |
| 2 | +<?php |
| 3 | +class SimpleSeleniumConfig { |
| 4 | + |
| 5 | + public static function getSettings(&$includeFiles, &$globalConfigs) { |
| 6 | + $includes = array( |
| 7 | + 'skins/Chick.php' |
| 8 | + ); |
| 9 | + $configs = array( |
| 10 | + 'wgDefaultSkin' => 'chick' |
| 11 | + ); |
| 12 | + $includeFiles = array_merge( $includeFiles, $includes ); |
| 13 | + $globalConfigs = array_merge( $globalConfigs, $configs); |
| 14 | + return true; |
| 15 | + } |
| 16 | +} |
\ No newline at end of file |