PluginProbe ʕ •ᴥ•ʔ
Kirki – Freeform Page Builder, Website Builder & Customizer / 6.3.0
Kirki – Freeform Page Builder, Website Builder & Customizer v6.3.0
6.3.0 6.2.5 6.2.4 6.2.3 6.2.2 6.2.1 6.2.0 6.1.1 6.1.0 6.0.14 6.0.13 6.0.12 6.0.11 6.0.10 6.0.9 6.0.8 6.0.7 6.0.6 6.0.5 6.0.4 6.0.3 6.0.2 6.0.1 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 4.0.19 4.0.20 4.0.21 4.0.22 4.0.23 4.0.24 4.1 4.2.0 5.0.0 5.1.0 5.1.1 5.2.0 5.2.1 5.2.2 5.2.3 6.0.0 trunk 3.0.40 3.0.41 3.0.42 3.0.43 3.0.44 3.0.45 3.1.0 3.1.1 3.1.2
kirki / vendor / composer / autoload_real.php
kirki / vendor / composer Last commit date
ClassLoader.php 4 months ago InstalledVersions.php 4 months ago autoload_classmap.php 2 months ago autoload_files.php 2 months ago autoload_namespaces.php 6 months ago autoload_psr4.php 2 months ago autoload_real.php 2 months ago autoload_static.php 2 months ago include_paths.php 6 months ago installed.php 2 weeks ago platform_check.php 2 months ago
autoload_real.php
55 lines
1 <?php
2
3 // autoload_real.php @generated by Composer
4
5 class ComposerAutoloaderInitKirkiFree
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 /**
17 * @return \Composer\Autoload\ClassLoader
18 */
19 public static function getLoader()
20 {
21 if (null !== self::$loader) {
22 return self::$loader;
23 }
24
25 require __DIR__ . '/platform_check.php';
26
27 spl_autoload_register(array('ComposerAutoloaderInitKirkiFree', 'loadClassLoader'), true, true);
28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29 spl_autoload_unregister(array('ComposerAutoloaderInitKirkiFree', 'loadClassLoader'));
30
31 $includePaths = require __DIR__ . '/include_paths.php';
32 $includePaths[] = get_include_path();
33 set_include_path(implode(PATH_SEPARATOR, $includePaths));
34
35 require __DIR__ . '/autoload_static.php';
36 call_user_func(\Composer\Autoload\ComposerStaticInitKirkiFree::getInitializer($loader));
37
38 $loader->register(true);
39
40 $filesToLoad = \Composer\Autoload\ComposerStaticInitKirkiFree::$files;
41 $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
42 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
43 $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
44
45 require $file;
46 }
47 }, null, null);
48 foreach ($filesToLoad as $fileIdentifier => $file) {
49 $requireFile($fileIdentifier, $file);
50 }
51
52 return $loader;
53 }
54 }
55