PluginProbe ʕ •ᴥ•ʔ
ShareThis Dashboard for Google Analytics / 3.1.2
ShareThis Dashboard for Google Analytics v3.1.2
3.3.2 trunk 1.0.7 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.5 2.3.5 2.3.6 2.3.7 2.3.8 2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 3.0.0 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3.0 3.3.1
googleanalytics / lib / analytics-admin / vendor / composer / autoload_real.php
googleanalytics / lib / analytics-admin / vendor / composer Last commit date
ClassLoader.php 3 years ago LICENSE 3 years ago autoload_classmap.php 3 years ago autoload_files.php 3 years ago autoload_namespaces.php 3 years ago autoload_psr4.php 3 years ago autoload_real.php 3 years ago autoload_static.php 3 years ago installed.json 3 years ago
autoload_real.php
71 lines
1 <?php
2
3 // autoload_real.php @generated by Composer
4
5 class ComposerAutoloaderInitc23fac57208ff3c822fd1727cc6035ab
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('ComposerAutoloaderInitc23fac57208ff3c822fd1727cc6035ab', 'loadClassLoader'), true, true);
23 self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24 spl_autoload_unregister(array('ComposerAutoloaderInitc23fac57208ff3c822fd1727cc6035ab', 'loadClassLoader'));
25
26 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27 if ($useStaticLoader) {
28 require_once __DIR__ . '/autoload_static.php';
29
30 call_user_func(\Composer\Autoload\ComposerStaticInitc23fac57208ff3c822fd1727cc6035ab::getInitializer($loader));
31 } else {
32 $map = require __DIR__ . '/autoload_namespaces.php';
33 foreach ($map as $namespace => $path) {
34 $loader->set($namespace, $path);
35 }
36
37 $map = require __DIR__ . '/autoload_psr4.php';
38 foreach ($map as $namespace => $path) {
39 $loader->setPsr4($namespace, $path);
40 }
41
42 $classMap = require __DIR__ . '/autoload_classmap.php';
43 if ($classMap) {
44 $loader->addClassMap($classMap);
45 }
46 }
47
48 $loader->register(true);
49
50 if ($useStaticLoader) {
51 $includeFiles = Composer\Autoload\ComposerStaticInitc23fac57208ff3c822fd1727cc6035ab::$files;
52 } else {
53 $includeFiles = require __DIR__ . '/autoload_files.php';
54 }
55 foreach ($includeFiles as $fileIdentifier => $file) {
56 composerRequirec23fac57208ff3c822fd1727cc6035ab($fileIdentifier, $file);
57 }
58
59 return $loader;
60 }
61 }
62
63 function composerRequirec23fac57208ff3c822fd1727cc6035ab($fileIdentifier, $file)
64 {
65 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
66 require $file;
67
68 $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
69 }
70 }
71