[ Index ] |
PHP Cross Reference of MediaWiki-1.24.0 |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @file 4 * @author Niklas Laxström 5 * @license GPL-2.0+ 6 */ 7 8 global $wgAutoloadClasses; 9 $dir = __DIR__; 10 11 $wgAutoloadClasses += array( 12 'LocalisationUpdate' => "$dir/LocalisationUpdate.class.php", 13 'LU_Updater' => "$dir/Updater.php", 14 'QuickArrayReader' => "$dir/QuickArrayReader.php", 15 16 # fetcher 17 'LU_Fetcher' => "$dir/fetcher/Fetcher.php", 18 'LU_FetcherFactory' => "$dir/fetcher/FetcherFactory.php", 19 'LU_FileSystemFetcher' => "$dir/fetcher/FileSystemFetcher.php", 20 'LU_GitHubFetcher' => "$dir/fetcher/GitHubFetcher.php", 21 'LU_HttpFetcher' => "$dir/fetcher/HttpFetcher.php", 22 23 # finder 24 'LU_Finder' => "$dir/finder/Finder.php", 25 26 # reader 27 'LU_JSONReader' => "$dir/reader/JSONReader.php", 28 'LU_PHPReader' => "$dir/reader/PHPReader.php", 29 'LU_Reader' => "$dir/reader/Reader.php", 30 'LU_ReaderFactory' => "$dir/reader/ReaderFactory.php", 31 );
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 14:03:12 2014 | Cross-referenced by PHPXref 0.7.1 |