PluginProbe
Boxzilla – WordPress Popup Builder / 3.2.4
Boxzilla – WordPress Popup Builder v3.2.4
3.4.11 3.4.10 3.4.9 3.4.3 3.4.4 3.4.5 3.4.6 3.4.7 3.4.8 trunk 3.0 3.0.1 3.0.2 3.0.3 3.1 3.1.1 3.1.10 3.1.11 3.1.12 3.1.13 3.1.14 3.1.15 3.1.16 3.1.17 3.1.18 All 72 releases
boxzilla / vendor / composer / autoload_real.php

autoload_real.php in Boxzilla – WordPress Popup Builder 3.2.4, at vendor/composer/autoload_real.php

60 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 // autoload_real.php @generated by Composer
4
5 class ComposerAutoloaderInit38e5bd5c00bdfd9a6ae58e314c6ae5ae
6 {
7 private static $loader;
8
9 public static function loadClassLoader($class)
10 {
11 if ('Composer\Autoload\ClassLoader' === $class) {
12 require __DIR__ . '/ClassLoader.php';
13 }
14 }
15
16 public static function getLoader()
17 {
18 if (null !== self::$loader) {
19 return self::$loader;
20 }
21
22 spl_autoload_register(array('ComposerAutoloaderInit38e5bd5c00bdfd9a6ae58e314c6ae5ae', 'loadClassLoader'), true, true);
23 self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24 spl_autoload_unregister(array('ComposerAutoloaderInit38e5bd5c00bdfd9a6ae58e314c6ae5ae', 'loadClassLoader'));
25
26 $map = require __DIR__ . '/autoload_namespaces.php';
27 foreach ($map as $namespace => $path) {
28 $loader->set($namespace, $path);
29 }
30
31 $map = require __DIR__ . '/autoload_psr4.php';
32 foreach ($map as $namespace => $path) {
33 $loader->setPsr4($namespace, $path);
34 }
35
36 $classMap = require __DIR__ . '/autoload_classmap.php';
37 if ($classMap) {
38 $loader->addClassMap($classMap);
39 }
40
41 $loader->register(true);
42
43 $includeFiles = require __DIR__ . '/autoload_files.php';
44 foreach ($includeFiles as $fileIdentifier => $file) {
45 composerRequire38e5bd5c00bdfd9a6ae58e314c6ae5ae($fileIdentifier, $file);
46 }
47
48 return $loader;
49 }
50 }
51
52 function composerRequire38e5bd5c00bdfd9a6ae58e314c6ae5ae($fileIdentifier, $file)
53 {
54 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
55 require $file;
56
57 $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
58 }
59 }
60