MediaWiki
REL1_21
|
00001 <?php 00026 class MediaWikiEditorConfig { 00027 public static function getSettings( &$includeFiles, &$globalConfigs ) { 00028 $includes = array( 00029 //files that needed to be included would go here 00030 //commenting out because this does not exist 00031 //'tests/selenium/suites/MediaWikiCommonFunction.php' 00032 ); 00033 $configs = array( 00034 'wgPageLoadTime' => "600000" 00035 ); 00036 $includeFiles = array_merge( $includeFiles, $includes ); 00037 $globalConfigs = array_merge( $globalConfigs, $configs ); 00038 return true; 00039 } 00040 } 00041