ClassLoader.php
2 years ago
InstalledVersions.php
5 months ago
autoload_classmap.php
5 days ago
autoload_files.php
8 months ago
autoload_namespaces.php
4 years ago
autoload_psr4.php
4 months ago
autoload_real.php
5 days ago
autoload_static.php
5 days ago
index.php
3 years ago
installed.json
2 months ago
installed.php
3 days ago
jetpack_autoload_classmap.php
5 days ago
jetpack_autoload_filemap.php
8 months ago
platform_check.php
5 months ago
autoload_real.php
38 lines
| 1 | <?php |
| 2 | if (!defined('ABSPATH')) exit; |
| 3 | // autoload_real.php @generated by Composer |
| 4 | class ComposerAutoloaderInit362475ab3000a6225facecf40e51a264 |
| 5 | { |
| 6 | private static $loader; |
| 7 | public static function loadClassLoader($class) |
| 8 | { |
| 9 | if ('Composer\Autoload\ClassLoader' === $class) { |
| 10 | require __DIR__ . '/ClassLoader.php'; |
| 11 | } |
| 12 | } |
| 13 | public static function getLoader() |
| 14 | { |
| 15 | if (null !== self::$loader) { |
| 16 | return self::$loader; |
| 17 | } |
| 18 | require __DIR__ . '/platform_check.php'; |
| 19 | spl_autoload_register(array('ComposerAutoloaderInit362475ab3000a6225facecf40e51a264', 'loadClassLoader'), true, true); |
| 20 | self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); |
| 21 | spl_autoload_unregister(array('ComposerAutoloaderInit362475ab3000a6225facecf40e51a264', 'loadClassLoader')); |
| 22 | require __DIR__ . '/autoload_static.php'; |
| 23 | call_user_func(\Composer\Autoload\ComposerStaticInit362475ab3000a6225facecf40e51a264::getInitializer($loader)); |
| 24 | $loader->register(true); |
| 25 | $filesToLoad = \Composer\Autoload\ComposerStaticInit362475ab3000a6225facecf40e51a264::$files; |
| 26 | $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { |
| 27 | if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { |
| 28 | $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; |
| 29 | require $file; |
| 30 | } |
| 31 | }, null, null); |
| 32 | foreach ($filesToLoad as $fileIdentifier => $file) { |
| 33 | $requireFile($fileIdentifier, $file); |
| 34 | } |
| 35 | return $loader; |
| 36 | } |
| 37 | } |
| 38 |