MediaWiki  REL1_19
MediaWikiEditorConfig.php
Go to the documentation of this file.
00001 <?php
00002 
00030 class MediaWikiEditorConfig {
00031 
00032     public static function getSettings(&$includeFiles, &$globalConfigs) {
00033         $includes = array(
00034                 //files that needed to be included would go here
00035                 //commenting out because this does not exist
00036                 //'tests/selenium/suites/MediaWikiCommonFunction.php'
00037         );
00038         $configs = array(
00039                 'wgPageLoadTime' => "600000"
00040         );
00041         $includeFiles = array_merge( $includeFiles, $includes );
00042         $globalConfigs = array_merge( $globalConfigs, $configs);
00043         return true;
00044     }
00045 }
00046 
00047 
00048