diff options
Diffstat (limited to 'extensions/LocalisationUpdate/Autoload.php')
-rw-r--r-- | extensions/LocalisationUpdate/Autoload.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/extensions/LocalisationUpdate/Autoload.php b/extensions/LocalisationUpdate/Autoload.php new file mode 100644 index 00000000..0b3f14dc --- /dev/null +++ b/extensions/LocalisationUpdate/Autoload.php @@ -0,0 +1,31 @@ +<?php +/** + * @file + * @author Niklas Laxström + * @license GPL-2.0+ + */ + +global $wgAutoloadClasses; +$dir = __DIR__; + +$wgAutoloadClasses += array( + 'LocalisationUpdate' => "$dir/LocalisationUpdate.class.php", + 'LU_Updater' => "$dir/Updater.php", + 'QuickArrayReader' => "$dir/QuickArrayReader.php", + + # fetcher + 'LU_Fetcher' => "$dir/fetcher/Fetcher.php", + 'LU_FetcherFactory' => "$dir/fetcher/FetcherFactory.php", + 'LU_FileSystemFetcher' => "$dir/fetcher/FileSystemFetcher.php", + 'LU_GitHubFetcher' => "$dir/fetcher/GitHubFetcher.php", + 'LU_HttpFetcher' => "$dir/fetcher/HttpFetcher.php", + + # finder + 'LU_Finder' => "$dir/finder/Finder.php", + + # reader + 'LU_JSONReader' => "$dir/reader/JSONReader.php", + 'LU_PHPReader' => "$dir/reader/PHPReader.php", + 'LU_Reader' => "$dir/reader/Reader.php", + 'LU_ReaderFactory' => "$dir/reader/ReaderFactory.php", +); |