Switch some HTMLForms in special pages to OOUI
[lhc/web/wiklou.git] / includes / AutoLoader.php
1 <?php
2 /**
3 * This defines autoloading handler for whole MediaWiki framework
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 /**
24 * Locations of core classes
25 * Extension classes are specified with $wgAutoloadClasses
26 * This array is a global instead of a static member of AutoLoader to work around a bug in APC
27 */
28 require_once __DIR__ . '/../autoload.php';
29
30 class AutoLoader {
31 static protected $autoloadLocalClassesLower = null;
32
33 /**
34 * autoload - take a class name and attempt to load it
35 *
36 * @param string $className Name of class we're looking for.
37 */
38 static function autoload( $className ) {
39 global $wgAutoloadClasses, $wgAutoloadLocalClasses,
40 $wgAutoloadAttemptLowercase;
41
42 // Workaround for PHP bug <https://bugs.php.net/bug.php?id=49143> (5.3.2. is broken, it's
43 // fixed in 5.3.6). Strip leading backslashes from class names. When namespaces are used,
44 // leading backslashes are used to indicate the top-level namespace, e.g. \foo\Bar. When
45 // used like this in the code, the leading backslash isn't passed to the auto-loader
46 // ($className would be 'foo\Bar'). However, if a class is accessed using a string instead
47 // of a class literal (e.g. $class = '\foo\Bar'; new $class()), then some versions of PHP
48 // do not strip the leading backlash in this case, causing autoloading to fail.
49 $className = ltrim( $className, '\\' );
50
51 $filename = false;
52
53 if ( isset( $wgAutoloadLocalClasses[$className] ) ) {
54 $filename = $wgAutoloadLocalClasses[$className];
55 } elseif ( isset( $wgAutoloadClasses[$className] ) ) {
56 $filename = $wgAutoloadClasses[$className];
57 } elseif ( $wgAutoloadAttemptLowercase ) {
58 /*
59 * Try a different capitalisation.
60 *
61 * PHP 4 objects are always serialized with the classname coerced to lowercase,
62 * and we are plagued with several legacy uses created by MediaWiki < 1.5, see
63 * https://wikitech.wikimedia.org/wiki/Text_storage_data
64 */
65 $lowerClass = strtolower( $className );
66
67 if ( self::$autoloadLocalClassesLower === null ) {
68 self::$autoloadLocalClassesLower = array_change_key_case( $wgAutoloadLocalClasses, CASE_LOWER );
69 }
70
71 if ( isset( self::$autoloadLocalClassesLower[$lowerClass] ) ) {
72 if ( function_exists( 'wfDebugLog' ) ) {
73 wfDebugLog( 'autoloader', "Class {$className} was loaded using incorrect case" );
74 }
75 $filename = self::$autoloadLocalClassesLower[$lowerClass];
76 }
77 }
78
79 if ( !$filename ) {
80 // Class not found; let the next autoloader try to find it
81 return;
82 }
83
84 // Make an absolute path, this improves performance by avoiding some stat calls
85 if ( substr( $filename, 0, 1 ) != '/' && substr( $filename, 1, 1 ) != ':' ) {
86 global $IP;
87 $filename = "$IP/$filename";
88 }
89
90 require $filename;
91 }
92
93 /**
94 * Force a class to be run through the autoloader, helpful for things like
95 * Sanitizer that have define()s outside of their class definition. Of course
96 * this wouldn't be necessary if everything in MediaWiki was class-based. Sigh.
97 *
98 * @param string $class
99 * @return bool Return the results of class_exists() so we know if we were successful
100 */
101 static function loadClass( $class ) {
102 return class_exists( $class );
103 }
104
105 /**
106 * Method to clear the protected class property $autoloadLocalClassesLower.
107 * Used in tests.
108 */
109 static function resetAutoloadLocalClassesLower() {
110 self::$autoloadLocalClassesLower = null;
111 }
112 }
113
114 spl_autoload_register( array( 'AutoLoader', 'autoload' ) );