Version Description
Download this release
Release Info
Developer | raldea89 |
Plugin | Download Monitor |
Version | 4.5.8 |
Comparing to | |
See all releases |
Code changes from version 4.5.7 to 4.5.8
- changelog.txt +3 -0
- download-monitor.php +2 -2
- includes/admin/class-dlm-upsells.php +9 -2
- readme.txt +1 -1
- src/Admin/CustomColumns.php +1 -1
- src/Admin/Extensions.php +9 -0
- vendor/composer/ClassLoader.php +572 -572
- vendor/composer/autoload_classmap.php +260 -260
- vendor/composer/autoload_real.php +55 -55
- vendor/composer/autoload_static.php +286 -286
changelog.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
= 4.5.7 - 21.03.2022 =
|
2 |
Changed: Removed Download Duplicator from LITE vs PRO page ( https://github.com/WPChill/download-monitor/issues/872 )
|
3 |
Changed: Versions from Gutenberg block now mention `n/a #id` as title if they are non-versioned ( https://github.com/WPChill/download-monitor/issues/873 )
|
1 |
+
= 4.5.8 - 28.03.2022 =
|
2 |
+
Fixed: Upgrade to PRO now disappears when all extensions installed ( https://github.com/WPChill/download-monitor/issues/875 )
|
3 |
+
|
4 |
= 4.5.7 - 21.03.2022 =
|
5 |
Changed: Removed Download Duplicator from LITE vs PRO page ( https://github.com/WPChill/download-monitor/issues/872 )
|
6 |
Changed: Versions from Gutenberg block now mention `n/a #id` as title if they are non-versioned ( https://github.com/WPChill/download-monitor/issues/873 )
|
download-monitor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Download Monitor
|
4 |
Plugin URI: https://www.download-monitor.com
|
5 |
Description: A full solution for managing and selling downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.
|
6 |
-
Version: 4.5.
|
7 |
Author: WPChill
|
8 |
Author URI: https://wpchill.com
|
9 |
Requires at least: 5.4
|
@@ -33,7 +33,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
33 |
} // Exit if accessed directly
|
34 |
|
35 |
// Define DLM Version
|
36 |
-
define( 'DLM_VERSION', '4.5.
|
37 |
|
38 |
// Define DLM FILE
|
39 |
define( 'DLM_PLUGIN_FILE', __FILE__ );
|
3 |
Plugin Name: Download Monitor
|
4 |
Plugin URI: https://www.download-monitor.com
|
5 |
Description: A full solution for managing and selling downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.
|
6 |
+
Version: 4.5.8
|
7 |
Author: WPChill
|
8 |
Author URI: https://wpchill.com
|
9 |
Requires at least: 5.4
|
33 |
} // Exit if accessed directly
|
34 |
|
35 |
// Define DLM Version
|
36 |
+
define( 'DLM_VERSION', '4.5.8' );
|
37 |
|
38 |
// Define DLM FILE
|
39 |
define( 'DLM_PLUGIN_FILE', __FILE__ );
|
includes/admin/class-dlm-upsells.php
CHANGED
@@ -876,9 +876,16 @@ class DLM_Upsells {
|
|
876 |
*/
|
877 |
public function filter_action_links( $links ) {
|
878 |
|
879 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
880 |
|
881 |
-
return array_merge( $upgrade, $links );
|
882 |
}
|
883 |
}
|
884 |
|
876 |
*/
|
877 |
public function filter_action_links( $links ) {
|
878 |
|
879 |
+
$dlm_extensions = DLM_Admin_Extensions::get_instance();
|
880 |
+
$extensions = $dlm_extensions->get_available_extensions();
|
881 |
+
|
882 |
+
if ( count( $extensions ) > 0 ) {
|
883 |
+
$upgrade = array( '<a target="_blank" style="color: orange;font-weight: bold;" href="https://www.download-monitor.com/pricing/?utm_source=download-monitor&utm_medium=plugins-page&utm_campaign=upsell">' . esc_html__( 'Upgrade to PRO!', 'download-monitor' ) . '</a>' );
|
884 |
+
return array_merge( $upgrade, $links );
|
885 |
+
}
|
886 |
+
|
887 |
+
return $links;
|
888 |
|
|
|
889 |
}
|
890 |
}
|
891 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: wpchill, silkalns, barrykooij, mikejolley
|
|
3 |
Tags: download manager, document management, file manager, digital store, ecommerce, document management plugin, download monitor, download counter, password protection, download protection, password, protect downloads, tracker, sell, shop, ecommerce, paypal
|
4 |
Requires at least: 5.4
|
5 |
Tested up to: 5.9
|
6 |
-
Stable tag: 4.5.
|
7 |
License: GPLv3
|
8 |
Text Domain: -
|
9 |
Requires PHP: 5.6
|
3 |
Tags: download manager, document management, file manager, digital store, ecommerce, document management plugin, download monitor, download counter, password protection, download protection, password, protect downloads, tracker, sell, shop, ecommerce, paypal
|
4 |
Requires at least: 5.4
|
5 |
Tested up to: 5.9
|
6 |
+
Stable tag: 4.5.8
|
7 |
License: GPLv3
|
8 |
Text Domain: -
|
9 |
Requires PHP: 5.6
|
src/Admin/CustomColumns.php
CHANGED
@@ -177,7 +177,7 @@ class DLM_Custom_Columns {
|
|
177 |
* @return string
|
178 |
*/
|
179 |
public function prepend_id_to_title( $title, $id){
|
180 |
-
if(
|
181 |
return '#' . $id . ' - ' . $title;
|
182 |
}
|
183 |
|
177 |
* @return string
|
178 |
*/
|
179 |
public function prepend_id_to_title( $title, $id){
|
180 |
+
if( 'dlm_download' === get_post_type( $id ) ) {
|
181 |
return '#' . $id . ' - ' . $title;
|
182 |
}
|
183 |
|
src/Admin/Extensions.php
CHANGED
@@ -474,6 +474,15 @@ class DLM_Admin_Extensions {
|
|
474 |
return $this->installed_extensions;
|
475 |
}
|
476 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
/**
|
478 |
* Removes pro badge if the section has any extension installed
|
479 |
*
|
474 |
return $this->installed_extensions;
|
475 |
}
|
476 |
|
477 |
+
/**
|
478 |
+
* Get the available extensions
|
479 |
+
*
|
480 |
+
* @since 4.5.8
|
481 |
+
*/
|
482 |
+
public function get_available_extensions() {
|
483 |
+
return $this->extensions;
|
484 |
+
}
|
485 |
+
|
486 |
/**
|
487 |
* Removes pro badge if the section has any extension installed
|
488 |
*
|
vendor/composer/ClassLoader.php
CHANGED
@@ -1,572 +1,572 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/*
|
4 |
-
* This file is part of Composer.
|
5 |
-
*
|
6 |
-
* (c) Nils Adermann <naderman@naderman.de>
|
7 |
-
* Jordi Boggiano <j.boggiano@seld.be>
|
8 |
-
*
|
9 |
-
* For the full copyright and license information, please view the LICENSE
|
10 |
-
* file that was distributed with this source code.
|
11 |
-
*/
|
12 |
-
|
13 |
-
namespace Composer\Autoload;
|
14 |
-
|
15 |
-
/**
|
16 |
-
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
|
17 |
-
*
|
18 |
-
* $loader = new \Composer\Autoload\ClassLoader();
|
19 |
-
*
|
20 |
-
* // register classes with namespaces
|
21 |
-
* $loader->add('Symfony\Component', __DIR__.'/component');
|
22 |
-
* $loader->add('Symfony', __DIR__.'/framework');
|
23 |
-
*
|
24 |
-
* // activate the autoloader
|
25 |
-
* $loader->register();
|
26 |
-
*
|
27 |
-
* // to enable searching the include path (eg. for PEAR packages)
|
28 |
-
* $loader->setUseIncludePath(true);
|
29 |
-
*
|
30 |
-
* In this example, if you try to use a class in the Symfony\Component
|
31 |
-
* namespace or one of its children (Symfony\Component\Console for instance),
|
32 |
-
* the autoloader will first look for the class under the component/
|
33 |
-
* directory, and it will then fallback to the framework/ directory if not
|
34 |
-
* found before giving up.
|
35 |
-
*
|
36 |
-
* This class is loosely based on the Symfony UniversalClassLoader.
|
37 |
-
*
|
38 |
-
* @author Fabien Potencier <fabien@symfony.com>
|
39 |
-
* @author Jordi Boggiano <j.boggiano@seld.be>
|
40 |
-
* @see https://www.php-fig.org/psr/psr-0/
|
41 |
-
* @see https://www.php-fig.org/psr/psr-4/
|
42 |
-
*/
|
43 |
-
class ClassLoader
|
44 |
-
{
|
45 |
-
/** @var ?string */
|
46 |
-
private $vendorDir;
|
47 |
-
|
48 |
-
// PSR-4
|
49 |
-
/**
|
50 |
-
* @var array[]
|
51 |
-
* @psalm-var array<string, array<string, int>>
|
52 |
-
*/
|
53 |
-
private $prefixLengthsPsr4 = array();
|
54 |
-
/**
|
55 |
-
* @var array[]
|
56 |
-
* @psalm-var array<string, array<int, string>>
|
57 |
-
*/
|
58 |
-
private $prefixDirsPsr4 = array();
|
59 |
-
/**
|
60 |
-
* @var array[]
|
61 |
-
* @psalm-var array<string, string>
|
62 |
-
*/
|
63 |
-
private $fallbackDirsPsr4 = array();
|
64 |
-
|
65 |
-
// PSR-0
|
66 |
-
/**
|
67 |
-
* @var array[]
|
68 |
-
* @psalm-var array<string, array<string, string[]>>
|
69 |
-
*/
|
70 |
-
private $prefixesPsr0 = array();
|
71 |
-
/**
|
72 |
-
* @var array[]
|
73 |
-
* @psalm-var array<string, string>
|
74 |
-
*/
|
75 |
-
private $fallbackDirsPsr0 = array();
|
76 |
-
|
77 |
-
/** @var bool */
|
78 |
-
private $useIncludePath = false;
|
79 |
-
|
80 |
-
/**
|
81 |
-
* @var string[]
|
82 |
-
* @psalm-var array<string, string>
|
83 |
-
*/
|
84 |
-
private $classMap = array();
|
85 |
-
|
86 |
-
/** @var bool */
|
87 |
-
private $classMapAuthoritative = false;
|
88 |
-
|
89 |
-
/**
|
90 |
-
* @var bool[]
|
91 |
-
* @psalm-var array<string, bool>
|
92 |
-
*/
|
93 |
-
private $missingClasses = array();
|
94 |
-
|
95 |
-
/** @var ?string */
|
96 |
-
private $apcuPrefix;
|
97 |
-
|
98 |
-
/**
|
99 |
-
* @var self[]
|
100 |
-
*/
|
101 |
-
private static $registeredLoaders = array();
|
102 |
-
|
103 |
-
/**
|
104 |
-
* @param ?string $vendorDir
|
105 |
-
*/
|
106 |
-
public function __construct($vendorDir = null)
|
107 |
-
{
|
108 |
-
$this->vendorDir = $vendorDir;
|
109 |
-
}
|
110 |
-
|
111 |
-
/**
|
112 |
-
* @return string[]
|
113 |
-
*/
|
114 |
-
public function getPrefixes()
|
115 |
-
{
|
116 |
-
if (!empty($this->prefixesPsr0)) {
|
117 |
-
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
|
118 |
-
}
|
119 |
-
|
120 |
-
return array();
|
121 |
-
}
|
122 |
-
|
123 |
-
/**
|
124 |
-
* @return array[]
|
125 |
-
* @psalm-return array<string, array<int, string>>
|
126 |
-
*/
|
127 |
-
public function getPrefixesPsr4()
|
128 |
-
{
|
129 |
-
return $this->prefixDirsPsr4;
|
130 |
-
}
|
131 |
-
|
132 |
-
/**
|
133 |
-
* @return array[]
|
134 |
-
* @psalm-return array<string, string>
|
135 |
-
*/
|
136 |
-
public function getFallbackDirs()
|
137 |
-
{
|
138 |
-
return $this->fallbackDirsPsr0;
|
139 |
-
}
|
140 |
-
|
141 |
-
/**
|
142 |
-
* @return array[]
|
143 |
-
* @psalm-return array<string, string>
|
144 |
-
*/
|
145 |
-
public function getFallbackDirsPsr4()
|
146 |
-
{
|
147 |
-
return $this->fallbackDirsPsr4;
|
148 |
-
}
|
149 |
-
|
150 |
-
/**
|
151 |
-
* @return string[] Array of classname => path
|
152 |
-
* @psalm-var array<string, string>
|
153 |
-
*/
|
154 |
-
public function getClassMap()
|
155 |
-
{
|
156 |
-
return $this->classMap;
|
157 |
-
}
|
158 |
-
|
159 |
-
/**
|
160 |
-
* @param string[] $classMap Class to filename map
|
161 |
-
* @psalm-param array<string, string> $classMap
|
162 |
-
*
|
163 |
-
* @return void
|
164 |
-
*/
|
165 |
-
public function addClassMap(array $classMap)
|
166 |
-
{
|
167 |
-
if ($this->classMap) {
|
168 |
-
$this->classMap = array_merge($this->classMap, $classMap);
|
169 |
-
} else {
|
170 |
-
$this->classMap = $classMap;
|
171 |
-
}
|
172 |
-
}
|
173 |
-
|
174 |
-
/**
|
175 |
-
* Registers a set of PSR-0 directories for a given prefix, either
|
176 |
-
* appending or prepending to the ones previously set for this prefix.
|
177 |
-
*
|
178 |
-
* @param string $prefix The prefix
|
179 |
-
* @param string[]|string $paths The PSR-0 root directories
|
180 |
-
* @param bool $prepend Whether to prepend the directories
|
181 |
-
*
|
182 |
-
* @return void
|
183 |
-
*/
|
184 |
-
public function add($prefix, $paths, $prepend = false)
|
185 |
-
{
|
186 |
-
if (!$prefix) {
|
187 |
-
if ($prepend) {
|
188 |
-
$this->fallbackDirsPsr0 = array_merge(
|
189 |
-
(array) $paths,
|
190 |
-
$this->fallbackDirsPsr0
|
191 |
-
);
|
192 |
-
} else {
|
193 |
-
$this->fallbackDirsPsr0 = array_merge(
|
194 |
-
$this->fallbackDirsPsr0,
|
195 |
-
(array) $paths
|
196 |
-
);
|
197 |
-
}
|
198 |
-
|
199 |
-
return;
|
200 |
-
}
|
201 |
-
|
202 |
-
$first = $prefix[0];
|
203 |
-
if (!isset($this->prefixesPsr0[$first][$prefix])) {
|
204 |
-
$this->prefixesPsr0[$first][$prefix] = (array) $paths;
|
205 |
-
|
206 |
-
return;
|
207 |
-
}
|
208 |
-
if ($prepend) {
|
209 |
-
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
210 |
-
(array) $paths,
|
211 |
-
$this->prefixesPsr0[$first][$prefix]
|
212 |
-
);
|
213 |
-
} else {
|
214 |
-
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
215 |
-
$this->prefixesPsr0[$first][$prefix],
|
216 |
-
(array) $paths
|
217 |
-
);
|
218 |
-
}
|
219 |
-
}
|
220 |
-
|
221 |
-
/**
|
222 |
-
* Registers a set of PSR-4 directories for a given namespace, either
|
223 |
-
* appending or prepending to the ones previously set for this namespace.
|
224 |
-
*
|
225 |
-
* @param string $prefix The prefix/namespace, with trailing '\\'
|
226 |
-
* @param string[]|string $paths The PSR-4 base directories
|
227 |
-
* @param bool $prepend Whether to prepend the directories
|
228 |
-
*
|
229 |
-
* @throws \InvalidArgumentException
|
230 |
-
*
|
231 |
-
* @return void
|
232 |
-
*/
|
233 |
-
public function addPsr4($prefix, $paths, $prepend = false)
|
234 |
-
{
|
235 |
-
if (!$prefix) {
|
236 |
-
// Register directories for the root namespace.
|
237 |
-
if ($prepend) {
|
238 |
-
$this->fallbackDirsPsr4 = array_merge(
|
239 |
-
(array) $paths,
|
240 |
-
$this->fallbackDirsPsr4
|
241 |
-
);
|
242 |
-
} else {
|
243 |
-
$this->fallbackDirsPsr4 = array_merge(
|
244 |
-
$this->fallbackDirsPsr4,
|
245 |
-
(array) $paths
|
246 |
-
);
|
247 |
-
}
|
248 |
-
} elseif (!isset($this->prefixDirsPsr4[$prefix])) {
|
249 |
-
// Register directories for a new namespace.
|
250 |
-
$length = strlen($prefix);
|
251 |
-
if ('\\' !== $prefix[$length - 1]) {
|
252 |
-
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
253 |
-
}
|
254 |
-
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
255 |
-
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
256 |
-
} elseif ($prepend) {
|
257 |
-
// Prepend directories for an already registered namespace.
|
258 |
-
$this->prefixDirsPsr4[$prefix] = array_merge(
|
259 |
-
(array) $paths,
|
260 |
-
$this->prefixDirsPsr4[$prefix]
|
261 |
-
);
|
262 |
-
} else {
|
263 |
-
// Append directories for an already registered namespace.
|
264 |
-
$this->prefixDirsPsr4[$prefix] = array_merge(
|
265 |
-
$this->prefixDirsPsr4[$prefix],
|
266 |
-
(array) $paths
|
267 |
-
);
|
268 |
-
}
|
269 |
-
}
|
270 |
-
|
271 |
-
/**
|
272 |
-
* Registers a set of PSR-0 directories for a given prefix,
|
273 |
-
* replacing any others previously set for this prefix.
|
274 |
-
*
|
275 |
-
* @param string $prefix The prefix
|
276 |
-
* @param string[]|string $paths The PSR-0 base directories
|
277 |
-
*
|
278 |
-
* @return void
|
279 |
-
*/
|
280 |
-
public function set($prefix, $paths)
|
281 |
-
{
|
282 |
-
if (!$prefix) {
|
283 |
-
$this->fallbackDirsPsr0 = (array) $paths;
|
284 |
-
} else {
|
285 |
-
$this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
|
286 |
-
}
|
287 |
-
}
|
288 |
-
|
289 |
-
/**
|
290 |
-
* Registers a set of PSR-4 directories for a given namespace,
|
291 |
-
* replacing any others previously set for this namespace.
|
292 |
-
*
|
293 |
-
* @param string $prefix The prefix/namespace, with trailing '\\'
|
294 |
-
* @param string[]|string $paths The PSR-4 base directories
|
295 |
-
*
|
296 |
-
* @throws \InvalidArgumentException
|
297 |
-
*
|
298 |
-
* @return void
|
299 |
-
*/
|
300 |
-
public function setPsr4($prefix, $paths)
|
301 |
-
{
|
302 |
-
if (!$prefix) {
|
303 |
-
$this->fallbackDirsPsr4 = (array) $paths;
|
304 |
-
} else {
|
305 |
-
$length = strlen($prefix);
|
306 |
-
if ('\\' !== $prefix[$length - 1]) {
|
307 |
-
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
308 |
-
}
|
309 |
-
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
310 |
-
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
311 |
-
}
|
312 |
-
}
|
313 |
-
|
314 |
-
/**
|
315 |
-
* Turns on searching the include path for class files.
|
316 |
-
*
|
317 |
-
* @param bool $useIncludePath
|
318 |
-
*
|
319 |
-
* @return void
|
320 |
-
*/
|
321 |
-
public function setUseIncludePath($useIncludePath)
|
322 |
-
{
|
323 |
-
$this->useIncludePath = $useIncludePath;
|
324 |
-
}
|
325 |
-
|
326 |
-
/**
|
327 |
-
* Can be used to check if the autoloader uses the include path to check
|
328 |
-
* for classes.
|
329 |
-
*
|
330 |
-
* @return bool
|
331 |
-
*/
|
332 |
-
public function getUseIncludePath()
|
333 |
-
{
|
334 |
-
return $this->useIncludePath;
|
335 |
-
}
|
336 |
-
|
337 |
-
/**
|
338 |
-
* Turns off searching the prefix and fallback directories for classes
|
339 |
-
* that have not been registered with the class map.
|
340 |
-
*
|
341 |
-
* @param bool $classMapAuthoritative
|
342 |
-
*
|
343 |
-
* @return void
|
344 |
-
*/
|
345 |
-
public function setClassMapAuthoritative($classMapAuthoritative)
|
346 |
-
{
|
347 |
-
$this->classMapAuthoritative = $classMapAuthoritative;
|
348 |
-
}
|
349 |
-
|
350 |
-
/**
|
351 |
-
* Should class lookup fail if not found in the current class map?
|
352 |
-
*
|
353 |
-
* @return bool
|
354 |
-
*/
|
355 |
-
public function isClassMapAuthoritative()
|
356 |
-
{
|
357 |
-
return $this->classMapAuthoritative;
|
358 |
-
}
|
359 |
-
|
360 |
-
/**
|
361 |
-
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
|
362 |
-
*
|
363 |
-
* @param string|null $apcuPrefix
|
364 |
-
*
|
365 |
-
* @return void
|
366 |
-
*/
|
367 |
-
public function setApcuPrefix($apcuPrefix)
|
368 |
-
{
|
369 |
-
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
|
370 |
-
}
|
371 |
-
|
372 |
-
/**
|
373 |
-
* The APCu prefix in use, or null if APCu caching is not enabled.
|
374 |
-
*
|
375 |
-
* @return string|null
|
376 |
-
*/
|
377 |
-
public function getApcuPrefix()
|
378 |
-
{
|
379 |
-
return $this->apcuPrefix;
|
380 |
-
}
|
381 |
-
|
382 |
-
/**
|
383 |
-
* Registers this instance as an autoloader.
|
384 |
-
*
|
385 |
-
* @param bool $prepend Whether to prepend the autoloader or not
|
386 |
-
*
|
387 |
-
* @return void
|
388 |
-
*/
|
389 |
-
public function register($prepend = false)
|
390 |
-
{
|
391 |
-
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
|
392 |
-
|
393 |
-
if (null === $this->vendorDir) {
|
394 |
-
return;
|
395 |
-
}
|
396 |
-
|
397 |
-
if ($prepend) {
|
398 |
-
self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
|
399 |
-
} else {
|
400 |
-
unset(self::$registeredLoaders[$this->vendorDir]);
|
401 |
-
self::$registeredLoaders[$this->vendorDir] = $this;
|
402 |
-
}
|
403 |
-
}
|
404 |
-
|
405 |
-
/**
|
406 |
-
* Unregisters this instance as an autoloader.
|
407 |
-
*
|
408 |
-
* @return void
|
409 |
-
*/
|
410 |
-
public function unregister()
|
411 |
-
{
|
412 |
-
spl_autoload_unregister(array($this, 'loadClass'));
|
413 |
-
|
414 |
-
if (null !== $this->vendorDir) {
|
415 |
-
unset(self::$registeredLoaders[$this->vendorDir]);
|
416 |
-
}
|
417 |
-
}
|
418 |
-
|
419 |
-
/**
|
420 |
-
* Loads the given class or interface.
|
421 |
-
*
|
422 |
-
* @param string $class The name of the class
|
423 |
-
* @return true|null True if loaded, null otherwise
|
424 |
-
*/
|
425 |
-
public function loadClass($class)
|
426 |
-
{
|
427 |
-
if ($file = $this->findFile($class)) {
|
428 |
-
includeFile($file);
|
429 |
-
|
430 |
-
return true;
|
431 |
-
}
|
432 |
-
|
433 |
-
return null;
|
434 |
-
}
|
435 |
-
|
436 |
-
/**
|
437 |
-
* Finds the path to the file where the class is defined.
|
438 |
-
*
|
439 |
-
* @param string $class The name of the class
|
440 |
-
*
|
441 |
-
* @return string|false The path if found, false otherwise
|
442 |
-
*/
|
443 |
-
public function findFile($class)
|
444 |
-
{
|
445 |
-
// class map lookup
|
446 |
-
if (isset($this->classMap[$class])) {
|
447 |
-
return $this->classMap[$class];
|
448 |
-
}
|
449 |
-
if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
|
450 |
-
return false;
|
451 |
-
}
|
452 |
-
if (null !== $this->apcuPrefix) {
|
453 |
-
$file = apcu_fetch($this->apcuPrefix.$class, $hit);
|
454 |
-
if ($hit) {
|
455 |
-
return $file;
|
456 |
-
}
|
457 |
-
}
|
458 |
-
|
459 |
-
$file = $this->findFileWithExtension($class, '.php');
|
460 |
-
|
461 |
-
// Search for Hack files if we are running on HHVM
|
462 |
-
if (false === $file && defined('HHVM_VERSION')) {
|
463 |
-
$file = $this->findFileWithExtension($class, '.hh');
|
464 |
-
}
|
465 |
-
|
466 |
-
if (null !== $this->apcuPrefix) {
|
467 |
-
apcu_add($this->apcuPrefix.$class, $file);
|
468 |
-
}
|
469 |
-
|
470 |
-
if (false === $file) {
|
471 |
-
// Remember that this class does not exist.
|
472 |
-
$this->missingClasses[$class] = true;
|
473 |
-
}
|
474 |
-
|
475 |
-
return $file;
|
476 |
-
}
|
477 |
-
|
478 |
-
/**
|
479 |
-
* Returns the currently registered loaders indexed by their corresponding vendor directories.
|
480 |
-
*
|
481 |
-
* @return self[]
|
482 |
-
*/
|
483 |
-
public static function getRegisteredLoaders()
|
484 |
-
{
|
485 |
-
return self::$registeredLoaders;
|
486 |
-
}
|
487 |
-
|
488 |
-
/**
|
489 |
-
* @param string $class
|
490 |
-
* @param string $ext
|
491 |
-
* @return string|false
|
492 |
-
*/
|
493 |
-
private function findFileWithExtension($class, $ext)
|
494 |
-
{
|
495 |
-
// PSR-4 lookup
|
496 |
-
$logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
|
497 |
-
|
498 |
-
$first = $class[0];
|
499 |
-
if (isset($this->prefixLengthsPsr4[$first])) {
|
500 |
-
$subPath = $class;
|
501 |
-
while (false !== $lastPos = strrpos($subPath, '\\')) {
|
502 |
-
$subPath = substr($subPath, 0, $lastPos);
|
503 |
-
$search = $subPath . '\\';
|
504 |
-
if (isset($this->prefixDirsPsr4[$search])) {
|
505 |
-
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
|
506 |
-
foreach ($this->prefixDirsPsr4[$search] as $dir) {
|
507 |
-
if (file_exists($file = $dir . $pathEnd)) {
|
508 |
-
return $file;
|
509 |
-
}
|
510 |
-
}
|
511 |
-
}
|
512 |
-
}
|
513 |
-
}
|
514 |
-
|
515 |
-
// PSR-4 fallback dirs
|
516 |
-
foreach ($this->fallbackDirsPsr4 as $dir) {
|
517 |
-
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
|
518 |
-
return $file;
|
519 |
-
}
|
520 |
-
}
|
521 |
-
|
522 |
-
// PSR-0 lookup
|
523 |
-
if (false !== $pos = strrpos($class, '\\')) {
|
524 |
-
// namespaced class name
|
525 |
-
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
|
526 |
-
. strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
|
527 |
-
} else {
|
528 |
-
// PEAR-like class name
|
529 |
-
$logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
|
530 |
-
}
|
531 |
-
|
532 |
-
if (isset($this->prefixesPsr0[$first])) {
|
533 |
-
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
|
534 |
-
if (0 === strpos($class, $prefix)) {
|
535 |
-
foreach ($dirs as $dir) {
|
536 |
-
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
537 |
-
return $file;
|
538 |
-
}
|
539 |
-
}
|
540 |
-
}
|
541 |
-
}
|
542 |
-
}
|
543 |
-
|
544 |
-
// PSR-0 fallback dirs
|
545 |
-
foreach ($this->fallbackDirsPsr0 as $dir) {
|
546 |
-
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
547 |
-
return $file;
|
548 |
-
}
|
549 |
-
}
|
550 |
-
|
551 |
-
// PSR-0 include paths.
|
552 |
-
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
|
553 |
-
return $file;
|
554 |
-
}
|
555 |
-
|
556 |
-
return false;
|
557 |
-
}
|
558 |
-
}
|
559 |
-
|
560 |
-
/**
|
561 |
-
* Scope isolated include.
|
562 |
-
*
|
563 |
-
* Prevents access to $this/self from included files.
|
564 |
-
*
|
565 |
-
* @param string $file
|
566 |
-
* @return void
|
567 |
-
* @private
|
568 |
-
*/
|
569 |
-
function includeFile($file)
|
570 |
-
{
|
571 |
-
include $file;
|
572 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*
|
4 |
+
* This file is part of Composer.
|
5 |
+
*
|
6 |
+
* (c) Nils Adermann <naderman@naderman.de>
|
7 |
+
* Jordi Boggiano <j.boggiano@seld.be>
|
8 |
+
*
|
9 |
+
* For the full copyright and license information, please view the LICENSE
|
10 |
+
* file that was distributed with this source code.
|
11 |
+
*/
|
12 |
+
|
13 |
+
namespace Composer\Autoload;
|
14 |
+
|
15 |
+
/**
|
16 |
+
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
|
17 |
+
*
|
18 |
+
* $loader = new \Composer\Autoload\ClassLoader();
|
19 |
+
*
|
20 |
+
* // register classes with namespaces
|
21 |
+
* $loader->add('Symfony\Component', __DIR__.'/component');
|
22 |
+
* $loader->add('Symfony', __DIR__.'/framework');
|
23 |
+
*
|
24 |
+
* // activate the autoloader
|
25 |
+
* $loader->register();
|
26 |
+
*
|
27 |
+
* // to enable searching the include path (eg. for PEAR packages)
|
28 |
+
* $loader->setUseIncludePath(true);
|
29 |
+
*
|
30 |
+
* In this example, if you try to use a class in the Symfony\Component
|
31 |
+
* namespace or one of its children (Symfony\Component\Console for instance),
|
32 |
+
* the autoloader will first look for the class under the component/
|
33 |
+
* directory, and it will then fallback to the framework/ directory if not
|
34 |
+
* found before giving up.
|
35 |
+
*
|
36 |
+
* This class is loosely based on the Symfony UniversalClassLoader.
|
37 |
+
*
|
38 |
+
* @author Fabien Potencier <fabien@symfony.com>
|
39 |
+
* @author Jordi Boggiano <j.boggiano@seld.be>
|
40 |
+
* @see https://www.php-fig.org/psr/psr-0/
|
41 |
+
* @see https://www.php-fig.org/psr/psr-4/
|
42 |
+
*/
|
43 |
+
class ClassLoader
|
44 |
+
{
|
45 |
+
/** @var ?string */
|
46 |
+
private $vendorDir;
|
47 |
+
|
48 |
+
// PSR-4
|
49 |
+
/**
|
50 |
+
* @var array[]
|
51 |
+
* @psalm-var array<string, array<string, int>>
|
52 |
+
*/
|
53 |
+
private $prefixLengthsPsr4 = array();
|
54 |
+
/**
|
55 |
+
* @var array[]
|
56 |
+
* @psalm-var array<string, array<int, string>>
|
57 |
+
*/
|
58 |
+
private $prefixDirsPsr4 = array();
|
59 |
+
/**
|
60 |
+
* @var array[]
|
61 |
+
* @psalm-var array<string, string>
|
62 |
+
*/
|
63 |
+
private $fallbackDirsPsr4 = array();
|
64 |
+
|
65 |
+
// PSR-0
|
66 |
+
/**
|
67 |
+
* @var array[]
|
68 |
+
* @psalm-var array<string, array<string, string[]>>
|
69 |
+
*/
|
70 |
+
private $prefixesPsr0 = array();
|
71 |
+
/**
|
72 |
+
* @var array[]
|
73 |
+
* @psalm-var array<string, string>
|
74 |
+
*/
|
75 |
+
private $fallbackDirsPsr0 = array();
|
76 |
+
|
77 |
+
/** @var bool */
|
78 |
+
private $useIncludePath = false;
|
79 |
+
|
80 |
+
/**
|
81 |
+
* @var string[]
|
82 |
+
* @psalm-var array<string, string>
|
83 |
+
*/
|
84 |
+
private $classMap = array();
|
85 |
+
|
86 |
+
/** @var bool */
|
87 |
+
private $classMapAuthoritative = false;
|
88 |
+
|
89 |
+
/**
|
90 |
+
* @var bool[]
|
91 |
+
* @psalm-var array<string, bool>
|
92 |
+
*/
|
93 |
+
private $missingClasses = array();
|
94 |
+
|
95 |
+
/** @var ?string */
|
96 |
+
private $apcuPrefix;
|
97 |
+
|
98 |
+
/**
|
99 |
+
* @var self[]
|
100 |
+
*/
|
101 |
+
private static $registeredLoaders = array();
|
102 |
+
|
103 |
+
/**
|
104 |
+
* @param ?string $vendorDir
|
105 |
+
*/
|
106 |
+
public function __construct($vendorDir = null)
|
107 |
+
{
|
108 |
+
$this->vendorDir = $vendorDir;
|
109 |
+
}
|
110 |
+
|
111 |
+
/**
|
112 |
+
* @return string[]
|
113 |
+
*/
|
114 |
+
public function getPrefixes()
|
115 |
+
{
|
116 |
+
if (!empty($this->prefixesPsr0)) {
|
117 |
+
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
|
118 |
+
}
|
119 |
+
|
120 |
+
return array();
|
121 |
+
}
|
122 |
+
|
123 |
+
/**
|
124 |
+
* @return array[]
|
125 |
+
* @psalm-return array<string, array<int, string>>
|
126 |
+
*/
|
127 |
+
public function getPrefixesPsr4()
|
128 |
+
{
|
129 |
+
return $this->prefixDirsPsr4;
|
130 |
+
}
|
131 |
+
|
132 |
+
/**
|
133 |
+
* @return array[]
|
134 |
+
* @psalm-return array<string, string>
|
135 |
+
*/
|
136 |
+
public function getFallbackDirs()
|
137 |
+
{
|
138 |
+
return $this->fallbackDirsPsr0;
|
139 |
+
}
|
140 |
+
|
141 |
+
/**
|
142 |
+
* @return array[]
|
143 |
+
* @psalm-return array<string, string>
|
144 |
+
*/
|
145 |
+
public function getFallbackDirsPsr4()
|
146 |
+
{
|
147 |
+
return $this->fallbackDirsPsr4;
|
148 |
+
}
|
149 |
+
|
150 |
+
/**
|
151 |
+
* @return string[] Array of classname => path
|
152 |
+
* @psalm-var array<string, string>
|
153 |
+
*/
|
154 |
+
public function getClassMap()
|
155 |
+
{
|
156 |
+
return $this->classMap;
|
157 |
+
}
|
158 |
+
|
159 |
+
/**
|
160 |
+
* @param string[] $classMap Class to filename map
|
161 |
+
* @psalm-param array<string, string> $classMap
|
162 |
+
*
|
163 |
+
* @return void
|
164 |
+
*/
|
165 |
+
public function addClassMap(array $classMap)
|
166 |
+
{
|
167 |
+
if ($this->classMap) {
|
168 |
+
$this->classMap = array_merge($this->classMap, $classMap);
|
169 |
+
} else {
|
170 |
+
$this->classMap = $classMap;
|
171 |
+
}
|
172 |
+
}
|
173 |
+
|
174 |
+
/**
|
175 |
+
* Registers a set of PSR-0 directories for a given prefix, either
|
176 |
+
* appending or prepending to the ones previously set for this prefix.
|
177 |
+
*
|
178 |
+
* @param string $prefix The prefix
|
179 |
+
* @param string[]|string $paths The PSR-0 root directories
|
180 |
+
* @param bool $prepend Whether to prepend the directories
|
181 |
+
*
|
182 |
+
* @return void
|
183 |
+
*/
|
184 |
+
public function add($prefix, $paths, $prepend = false)
|
185 |
+
{
|
186 |
+
if (!$prefix) {
|
187 |
+
if ($prepend) {
|
188 |
+
$this->fallbackDirsPsr0 = array_merge(
|
189 |
+
(array) $paths,
|
190 |
+
$this->fallbackDirsPsr0
|
191 |
+
);
|
192 |
+
} else {
|
193 |
+
$this->fallbackDirsPsr0 = array_merge(
|
194 |
+
$this->fallbackDirsPsr0,
|
195 |
+
(array) $paths
|
196 |
+
);
|
197 |
+
}
|
198 |
+
|
199 |
+
return;
|
200 |
+
}
|
201 |
+
|
202 |
+
$first = $prefix[0];
|
203 |
+
if (!isset($this->prefixesPsr0[$first][$prefix])) {
|
204 |
+
$this->prefixesPsr0[$first][$prefix] = (array) $paths;
|
205 |
+
|
206 |
+
return;
|
207 |
+
}
|
208 |
+
if ($prepend) {
|
209 |
+
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
210 |
+
(array) $paths,
|
211 |
+
$this->prefixesPsr0[$first][$prefix]
|
212 |
+
);
|
213 |
+
} else {
|
214 |
+
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
215 |
+
$this->prefixesPsr0[$first][$prefix],
|
216 |
+
(array) $paths
|
217 |
+
);
|
218 |
+
}
|
219 |
+
}
|
220 |
+
|
221 |
+
/**
|
222 |
+
* Registers a set of PSR-4 directories for a given namespace, either
|
223 |
+
* appending or prepending to the ones previously set for this namespace.
|
224 |
+
*
|
225 |
+
* @param string $prefix The prefix/namespace, with trailing '\\'
|
226 |
+
* @param string[]|string $paths The PSR-4 base directories
|
227 |
+
* @param bool $prepend Whether to prepend the directories
|
228 |
+
*
|
229 |
+
* @throws \InvalidArgumentException
|
230 |
+
*
|
231 |
+
* @return void
|
232 |
+
*/
|
233 |
+
public function addPsr4($prefix, $paths, $prepend = false)
|
234 |
+
{
|
235 |
+
if (!$prefix) {
|
236 |
+
// Register directories for the root namespace.
|
237 |
+
if ($prepend) {
|
238 |
+
$this->fallbackDirsPsr4 = array_merge(
|
239 |
+
(array) $paths,
|
240 |
+
$this->fallbackDirsPsr4
|
241 |
+
);
|
242 |
+
} else {
|
243 |
+
$this->fallbackDirsPsr4 = array_merge(
|
244 |
+
$this->fallbackDirsPsr4,
|
245 |
+
(array) $paths
|
246 |
+
);
|
247 |
+
}
|
248 |
+
} elseif (!isset($this->prefixDirsPsr4[$prefix])) {
|
249 |
+
// Register directories for a new namespace.
|
250 |
+
$length = strlen($prefix);
|
251 |
+
if ('\\' !== $prefix[$length - 1]) {
|
252 |
+
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
253 |
+
}
|
254 |
+
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
255 |
+
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
256 |
+
} elseif ($prepend) {
|
257 |
+
// Prepend directories for an already registered namespace.
|
258 |
+
$this->prefixDirsPsr4[$prefix] = array_merge(
|
259 |
+
(array) $paths,
|
260 |
+
$this->prefixDirsPsr4[$prefix]
|
261 |
+
);
|
262 |
+
} else {
|
263 |
+
// Append directories for an already registered namespace.
|
264 |
+
$this->prefixDirsPsr4[$prefix] = array_merge(
|
265 |
+
$this->prefixDirsPsr4[$prefix],
|
266 |
+
(array) $paths
|
267 |
+
);
|
268 |
+
}
|
269 |
+
}
|
270 |
+
|
271 |
+
/**
|
272 |
+
* Registers a set of PSR-0 directories for a given prefix,
|
273 |
+
* replacing any others previously set for this prefix.
|
274 |
+
*
|
275 |
+
* @param string $prefix The prefix
|
276 |
+
* @param string[]|string $paths The PSR-0 base directories
|
277 |
+
*
|
278 |
+
* @return void
|
279 |
+
*/
|
280 |
+
public function set($prefix, $paths)
|
281 |
+
{
|
282 |
+
if (!$prefix) {
|
283 |
+
$this->fallbackDirsPsr0 = (array) $paths;
|
284 |
+
} else {
|
285 |
+
$this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
|
286 |
+
}
|
287 |
+
}
|
288 |
+
|
289 |
+
/**
|
290 |
+
* Registers a set of PSR-4 directories for a given namespace,
|
291 |
+
* replacing any others previously set for this namespace.
|
292 |
+
*
|
293 |
+
* @param string $prefix The prefix/namespace, with trailing '\\'
|
294 |
+
* @param string[]|string $paths The PSR-4 base directories
|
295 |
+
*
|
296 |
+
* @throws \InvalidArgumentException
|
297 |
+
*
|
298 |
+
* @return void
|
299 |
+
*/
|
300 |
+
public function setPsr4($prefix, $paths)
|
301 |
+
{
|
302 |
+
if (!$prefix) {
|
303 |
+
$this->fallbackDirsPsr4 = (array) $paths;
|
304 |
+
} else {
|
305 |
+
$length = strlen($prefix);
|
306 |
+
if ('\\' !== $prefix[$length - 1]) {
|
307 |
+
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
308 |
+
}
|
309 |
+
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
310 |
+
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
311 |
+
}
|
312 |
+
}
|
313 |
+
|
314 |
+
/**
|
315 |
+
* Turns on searching the include path for class files.
|
316 |
+
*
|
317 |
+
* @param bool $useIncludePath
|
318 |
+
*
|
319 |
+
* @return void
|
320 |
+
*/
|
321 |
+
public function setUseIncludePath($useIncludePath)
|
322 |
+
{
|
323 |
+
$this->useIncludePath = $useIncludePath;
|
324 |
+
}
|
325 |
+
|
326 |
+
/**
|
327 |
+
* Can be used to check if the autoloader uses the include path to check
|
328 |
+
* for classes.
|
329 |
+
*
|
330 |
+
* @return bool
|
331 |
+
*/
|
332 |
+
public function getUseIncludePath()
|
333 |
+
{
|
334 |
+
return $this->useIncludePath;
|
335 |
+
}
|
336 |
+
|
337 |
+
/**
|
338 |
+
* Turns off searching the prefix and fallback directories for classes
|
339 |
+
* that have not been registered with the class map.
|
340 |
+
*
|
341 |
+
* @param bool $classMapAuthoritative
|
342 |
+
*
|
343 |
+
* @return void
|
344 |
+
*/
|
345 |
+
public function setClassMapAuthoritative($classMapAuthoritative)
|
346 |
+
{
|
347 |
+
$this->classMapAuthoritative = $classMapAuthoritative;
|
348 |
+
}
|
349 |
+
|
350 |
+
/**
|
351 |
+
* Should class lookup fail if not found in the current class map?
|
352 |
+
*
|
353 |
+
* @return bool
|
354 |
+
*/
|
355 |
+
public function isClassMapAuthoritative()
|
356 |
+
{
|
357 |
+
return $this->classMapAuthoritative;
|
358 |
+
}
|
359 |
+
|
360 |
+
/**
|
361 |
+
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
|
362 |
+
*
|
363 |
+
* @param string|null $apcuPrefix
|
364 |
+
*
|
365 |
+
* @return void
|
366 |
+
*/
|
367 |
+
public function setApcuPrefix($apcuPrefix)
|
368 |
+
{
|
369 |
+
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
|
370 |
+
}
|
371 |
+
|
372 |
+
/**
|
373 |
+
* The APCu prefix in use, or null if APCu caching is not enabled.
|
374 |
+
*
|
375 |
+
* @return string|null
|
376 |
+
*/
|
377 |
+
public function getApcuPrefix()
|
378 |
+
{
|
379 |
+
return $this->apcuPrefix;
|
380 |
+
}
|
381 |
+
|
382 |
+
/**
|
383 |
+
* Registers this instance as an autoloader.
|
384 |
+
*
|
385 |
+
* @param bool $prepend Whether to prepend the autoloader or not
|
386 |
+
*
|
387 |
+
* @return void
|
388 |
+
*/
|
389 |
+
public function register($prepend = false)
|
390 |
+
{
|
391 |
+
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
|
392 |
+
|
393 |
+
if (null === $this->vendorDir) {
|
394 |
+
return;
|
395 |
+
}
|
396 |
+
|
397 |
+
if ($prepend) {
|
398 |
+
self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
|
399 |
+
} else {
|
400 |
+
unset(self::$registeredLoaders[$this->vendorDir]);
|
401 |
+
self::$registeredLoaders[$this->vendorDir] = $this;
|
402 |
+
}
|
403 |
+
}
|
404 |
+
|
405 |
+
/**
|
406 |
+
* Unregisters this instance as an autoloader.
|
407 |
+
*
|
408 |
+
* @return void
|
409 |
+
*/
|
410 |
+
public function unregister()
|
411 |
+
{
|
412 |
+
spl_autoload_unregister(array($this, 'loadClass'));
|
413 |
+
|
414 |
+
if (null !== $this->vendorDir) {
|
415 |
+
unset(self::$registeredLoaders[$this->vendorDir]);
|
416 |
+
}
|
417 |
+
}
|
418 |
+
|
419 |
+
/**
|
420 |
+
* Loads the given class or interface.
|
421 |
+
*
|
422 |
+
* @param string $class The name of the class
|
423 |
+
* @return true|null True if loaded, null otherwise
|
424 |
+
*/
|
425 |
+
public function loadClass($class)
|
426 |
+
{
|
427 |
+
if ($file = $this->findFile($class)) {
|
428 |
+
includeFile($file);
|
429 |
+
|
430 |
+
return true;
|
431 |
+
}
|
432 |
+
|
433 |
+
return null;
|
434 |
+
}
|
435 |
+
|
436 |
+
/**
|
437 |
+
* Finds the path to the file where the class is defined.
|
438 |
+
*
|
439 |
+
* @param string $class The name of the class
|
440 |
+
*
|
441 |
+
* @return string|false The path if found, false otherwise
|
442 |
+
*/
|
443 |
+
public function findFile($class)
|
444 |
+
{
|
445 |
+
// class map lookup
|
446 |
+
if (isset($this->classMap[$class])) {
|
447 |
+
return $this->classMap[$class];
|
448 |
+
}
|
449 |
+
if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
|
450 |
+
return false;
|
451 |
+
}
|
452 |
+
if (null !== $this->apcuPrefix) {
|
453 |
+
$file = apcu_fetch($this->apcuPrefix.$class, $hit);
|
454 |
+
if ($hit) {
|
455 |
+
return $file;
|
456 |
+
}
|
457 |
+
}
|
458 |
+
|
459 |
+
$file = $this->findFileWithExtension($class, '.php');
|
460 |
+
|
461 |
+
// Search for Hack files if we are running on HHVM
|
462 |
+
if (false === $file && defined('HHVM_VERSION')) {
|
463 |
+
$file = $this->findFileWithExtension($class, '.hh');
|
464 |
+
}
|
465 |
+
|
466 |
+
if (null !== $this->apcuPrefix) {
|
467 |
+
apcu_add($this->apcuPrefix.$class, $file);
|
468 |
+
}
|
469 |
+
|
470 |
+
if (false === $file) {
|
471 |
+
// Remember that this class does not exist.
|
472 |
+
$this->missingClasses[$class] = true;
|
473 |
+
}
|
474 |
+
|
475 |
+
return $file;
|
476 |
+
}
|
477 |
+
|
478 |
+
/**
|
479 |
+
* Returns the currently registered loaders indexed by their corresponding vendor directories.
|
480 |
+
*
|
481 |
+
* @return self[]
|
482 |
+
*/
|
483 |
+
public static function getRegisteredLoaders()
|
484 |
+
{
|
485 |
+
return self::$registeredLoaders;
|
486 |
+
}
|
487 |
+
|
488 |
+
/**
|
489 |
+
* @param string $class
|
490 |
+
* @param string $ext
|
491 |
+
* @return string|false
|
492 |
+
*/
|
493 |
+
private function findFileWithExtension($class, $ext)
|
494 |
+
{
|
495 |
+
// PSR-4 lookup
|
496 |
+
$logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
|
497 |
+
|
498 |
+
$first = $class[0];
|
499 |
+
if (isset($this->prefixLengthsPsr4[$first])) {
|
500 |
+
$subPath = $class;
|
501 |
+
while (false !== $lastPos = strrpos($subPath, '\\')) {
|
502 |
+
$subPath = substr($subPath, 0, $lastPos);
|
503 |
+
$search = $subPath . '\\';
|
504 |
+
if (isset($this->prefixDirsPsr4[$search])) {
|
505 |
+
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
|
506 |
+
foreach ($this->prefixDirsPsr4[$search] as $dir) {
|
507 |
+
if (file_exists($file = $dir . $pathEnd)) {
|
508 |
+
return $file;
|
509 |
+
}
|
510 |
+
}
|
511 |
+
}
|
512 |
+
}
|
513 |
+
}
|
514 |
+
|
515 |
+
// PSR-4 fallback dirs
|
516 |
+
foreach ($this->fallbackDirsPsr4 as $dir) {
|
517 |
+
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
|
518 |
+
return $file;
|
519 |
+
}
|
520 |
+
}
|
521 |
+
|
522 |
+
// PSR-0 lookup
|
523 |
+
if (false !== $pos = strrpos($class, '\\')) {
|
524 |
+
// namespaced class name
|
525 |
+
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
|
526 |
+
. strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
|
527 |
+
} else {
|
528 |
+
// PEAR-like class name
|
529 |
+
$logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
|
530 |
+
}
|
531 |
+
|
532 |
+
if (isset($this->prefixesPsr0[$first])) {
|
533 |
+
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
|
534 |
+
if (0 === strpos($class, $prefix)) {
|
535 |
+
foreach ($dirs as $dir) {
|
536 |
+
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
537 |
+
return $file;
|
538 |
+
}
|
539 |
+
}
|
540 |
+
}
|
541 |
+
}
|
542 |
+
}
|
543 |
+
|
544 |
+
// PSR-0 fallback dirs
|
545 |
+
foreach ($this->fallbackDirsPsr0 as $dir) {
|
546 |
+
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
547 |
+
return $file;
|
548 |
+
}
|
549 |
+
}
|
550 |
+
|
551 |
+
// PSR-0 include paths.
|
552 |
+
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
|
553 |
+
return $file;
|
554 |
+
}
|
555 |
+
|
556 |
+
return false;
|
557 |
+
}
|
558 |
+
}
|
559 |
+
|
560 |
+
/**
|
561 |
+
* Scope isolated include.
|
562 |
+
*
|
563 |
+
* Prevents access to $this/self from included files.
|
564 |
+
*
|
565 |
+
* @param string $file
|
566 |
+
* @return void
|
567 |
+
* @private
|
568 |
+
*/
|
569 |
+
function includeFile($file)
|
570 |
+
{
|
571 |
+
include $file;
|
572 |
+
}
|
vendor/composer/autoload_classmap.php
CHANGED
@@ -1,260 +1,260 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
// autoload_classmap.php @generated by Composer
|
4 |
-
|
5 |
-
$vendorDir = dirname(dirname(__FILE__));
|
6 |
-
$baseDir = dirname($vendorDir);
|
7 |
-
|
8 |
-
return array(
|
9 |
-
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
|
10 |
-
'DLM_Admin' => $baseDir . '/src/Admin/Admin.php',
|
11 |
-
'DLM_Admin_Dashboard' => $baseDir . '/src/Admin/Dashboard.php',
|
12 |
-
'DLM_Admin_Extensions' => $baseDir . '/src/Admin/Extensions.php',
|
13 |
-
'DLM_Admin_Fields_Field' => $baseDir . '/src/Admin/Settings/Fields/Field.php',
|
14 |
-
'DLM_Admin_Fields_Field_ActionButton' => $baseDir . '/src/Admin/Settings/Fields/ActionButton.php',
|
15 |
-
'DLM_Admin_Fields_Field_Checkbox' => $baseDir . '/src/Admin/Settings/Fields/Checkbox.php',
|
16 |
-
'DLM_Admin_Fields_Field_Desc' => $baseDir . '/src/Admin/Settings/Fields/Desc.php',
|
17 |
-
'DLM_Admin_Fields_Field_Factory' => $baseDir . '/src/Admin/Settings/Fields/FieldFactory.php',
|
18 |
-
'DLM_Admin_Fields_Field_HtaccessStatus' => $baseDir . '/src/Admin/Settings/Fields/HtaccessStatus.php',
|
19 |
-
'DLM_Admin_Fields_Field_Lazy_Select' => $baseDir . '/src/Admin/Settings/Fields/LazySelect.php',
|
20 |
-
'DLM_Admin_Fields_Field_Password' => $baseDir . '/src/Admin/Settings/Fields/Password.php',
|
21 |
-
'DLM_Admin_Fields_Field_Select' => $baseDir . '/src/Admin/Settings/Fields/Select.php',
|
22 |
-
'DLM_Admin_Fields_Field_Text' => $baseDir . '/src/Admin/Settings/Fields/Text.php',
|
23 |
-
'DLM_Admin_Fields_Field_Textarea' => $baseDir . '/src/Admin/Settings/Fields/Textarea.php',
|
24 |
-
'DLM_Admin_Fields_Field_Title' => $baseDir . '/src/Admin/Settings/Fields/Title.php',
|
25 |
-
'DLM_Admin_Helper' => $baseDir . '/src/Admin/class-dlm-admin-helper.php',
|
26 |
-
'DLM_Admin_Media_Browser' => $baseDir . '/src/Admin/MediaBrowser.php',
|
27 |
-
'DLM_Admin_Media_Insert' => $baseDir . '/src/Admin/MediaInsert.php',
|
28 |
-
'DLM_Admin_OptionsUpsells' => $baseDir . '/src/Admin/OptionsUpsells.php',
|
29 |
-
'DLM_Admin_Scripts' => $baseDir . '/src/Admin/AdminScripts.php',
|
30 |
-
'DLM_Admin_Settings' => $baseDir . '/src/Admin/Settings/Settings.php',
|
31 |
-
'DLM_Admin_Writepanels' => $baseDir . '/src/Admin/WritePanels.php',
|
32 |
-
'DLM_Ajax' => $baseDir . '/src/Ajax/Ajax.php',
|
33 |
-
'DLM_Ajax_CreatePage' => $baseDir . '/src/Ajax/CreatePage.php',
|
34 |
-
'DLM_Ajax_GetDownloads' => $baseDir . '/src/Ajax/GetDownloads.php',
|
35 |
-
'DLM_Ajax_GetVersions' => $baseDir . '/src/Ajax/GetVersions.php',
|
36 |
-
'DLM_Ajax_Handler' => $baseDir . '/src/AjaxHandler.php',
|
37 |
-
'DLM_Ajax_Manager' => $baseDir . '/src/Ajax/Manager.php',
|
38 |
-
'DLM_Category_Walker' => $baseDir . '/src/Admin/CategoryWalker.php',
|
39 |
-
'DLM_Constants' => $baseDir . '/src/Constants.php',
|
40 |
-
'DLM_Cookie_Manager' => $baseDir . '/src/CookieManager.php',
|
41 |
-
'DLM_Custom_Actions' => $baseDir . '/src/Admin/CustomActions.php',
|
42 |
-
'DLM_Custom_Columns' => $baseDir . '/src/Admin/CustomColumns.php',
|
43 |
-
'DLM_Custom_Labels' => $baseDir . '/src/Admin/CustomLabels.php',
|
44 |
-
'DLM_Debug_Logger' => $baseDir . '/src/DebugLogger.php',
|
45 |
-
'DLM_Download' => $baseDir . '/src/Download/Download.php',
|
46 |
-
'DLM_DownloadPreview_Config' => $baseDir . '/src/DownloadPreview/Config.php',
|
47 |
-
'DLM_DownloadPreview_Preview' => $baseDir . '/src/DownloadPreview/Preview.php',
|
48 |
-
'DLM_Download_Duplicator_AAM' => $baseDir . '/src/Admin/Duplicate/DownloadDuplicatorAAM.php',
|
49 |
-
'DLM_Download_Factory' => $baseDir . '/src/Download/DownloadFactory.php',
|
50 |
-
'DLM_Download_Handler' => $baseDir . '/src/DownloadHandler.php',
|
51 |
-
'DLM_Download_No_Access_Page_Endpoint' => $baseDir . '/src/DownloadNoAccessPageEndpoint.php',
|
52 |
-
'DLM_Download_Repository' => $baseDir . '/src/Download/DownloadRepository.php',
|
53 |
-
'DLM_Download_Version' => $baseDir . '/src/Version/Version.php',
|
54 |
-
'DLM_File_Manager' => $baseDir . '/src/FileManager.php',
|
55 |
-
'DLM_Gutenberg' => $baseDir . '/src/Gutenberg.php',
|
56 |
-
'DLM_Hasher' => $baseDir . '/src/Hasher.php',
|
57 |
-
'DLM_Installer' => $baseDir . '/src/Installer.php',
|
58 |
-
'DLM_Integrations_PostTypesOrder' => $baseDir . '/src/Integrations/PostTypesOrder.php',
|
59 |
-
'DLM_Integrations_YoastSEO' => $baseDir . '/src/Integrations/YoastSEO.php',
|
60 |
-
'DLM_LU_Ajax' => $baseDir . '/src/LegacyUpgrader/Ajax.php',
|
61 |
-
'DLM_LU_Checker' => $baseDir . '/src/LegacyUpgrader/Checker.php',
|
62 |
-
'DLM_LU_Content_Queue' => $baseDir . '/src/LegacyUpgrader/ContentQueue.php',
|
63 |
-
'DLM_LU_Content_Upgrader' => $baseDir . '/src/LegacyUpgrader/ContentUpgrader.php',
|
64 |
-
'DLM_LU_Download_Queue' => $baseDir . '/src/LegacyUpgrader/DownloadQueue.php',
|
65 |
-
'DLM_LU_Download_Upgrader' => $baseDir . '/src/LegacyUpgrader/DownloadUpgrader.php',
|
66 |
-
'DLM_LU_Message' => $baseDir . '/src/LegacyUpgrader/Message.php',
|
67 |
-
'DLM_LU_Page' => $baseDir . '/src/LegacyUpgrader/Page.php',
|
68 |
-
'DLM_Log_Export_CSV' => $baseDir . '/src/Logs/LogExportCSV.php',
|
69 |
-
'DLM_Log_Filters' => $baseDir . '/src/Logs/LogFilters.php',
|
70 |
-
'DLM_Log_Item' => $baseDir . '/src/Logs/LogItem.php',
|
71 |
-
'DLM_Log_Item_Repository' => $baseDir . '/src/Logs/LogItemRepository.php',
|
72 |
-
'DLM_Log_Page' => $baseDir . '/src/Logs/LogPage.php',
|
73 |
-
'DLM_Logging' => $baseDir . '/src/Logs/Logging.php',
|
74 |
-
'DLM_Logging_List_Table' => $baseDir . '/src/Logs/LoggingListTable.php',
|
75 |
-
'DLM_Post_Type_Manager' => $baseDir . '/src/PostTypeManager.php',
|
76 |
-
'DLM_Product' => $baseDir . '/src/Product/Product.php',
|
77 |
-
'DLM_Product_Error_Handler' => $baseDir . '/src/Product/ProductErrorHandler.php',
|
78 |
-
'DLM_Product_License' => $baseDir . '/src/Product/ProductLicense.php',
|
79 |
-
'DLM_Product_Manager' => $baseDir . '/src/Product/ProductManager.php',
|
80 |
-
'DLM_Reports_Ajax' => $baseDir . '/src/Admin/Reports/Ajax.php',
|
81 |
-
'DLM_Reports_Chart' => $baseDir . '/src/Admin/Reports/Chart.php',
|
82 |
-
'DLM_Reports_Page' => $baseDir . '/src/Admin/Reports/Page.php',
|
83 |
-
'DLM_Review' => $baseDir . '/includes/admin/class-dlm-review.php',
|
84 |
-
'DLM_Search' => $baseDir . '/src/Search.php',
|
85 |
-
'DLM_Services' => $baseDir . '/src/Services.php',
|
86 |
-
'DLM_Settings_Helper' => $baseDir . '/src/Admin/Settings/SettingsHelper.php',
|
87 |
-
'DLM_Settings_Page' => $baseDir . '/src/Admin/Settings/Page.php',
|
88 |
-
'DLM_Shortcodes' => $baseDir . '/src/Shortcodes.php',
|
89 |
-
'DLM_Taxonomy_Manager' => $baseDir . '/src/TaxonomyManager.php',
|
90 |
-
'DLM_Template_Handler' => $baseDir . '/src/TemplateHandler.php',
|
91 |
-
'DLM_Transient_Manager' => $baseDir . '/src/TransientManager.php',
|
92 |
-
'DLM_Uninstall' => $baseDir . '/includes/admin/uninstall/class-dlm-uninstall.php',
|
93 |
-
'DLM_Upgrade_Manager' => $baseDir . '/src/UpgradeManager.php',
|
94 |
-
'DLM_Upsells' => $baseDir . '/includes/admin/class-dlm-upsells.php',
|
95 |
-
'DLM_Utils' => $baseDir . '/src/Utils.php',
|
96 |
-
'DLM_Version_Manager' => $baseDir . '/src/Version/VersionManager.php',
|
97 |
-
'DLM_Version_Repository' => $baseDir . '/src/Version/VersionRepository.php',
|
98 |
-
'DLM_View_Manager' => $baseDir . '/src/Admin/ViewManager.php',
|
99 |
-
'DLM_Widget_Downloads' => $baseDir . '/src/Widgets/Downloads.php',
|
100 |
-
'DLM_Widget_Manager' => $baseDir . '/src/Widgets/Manager.php',
|
101 |
-
'DLM_WordPress_Download_Repository' => $baseDir . '/src/Download/WordPressDownloadRepository.php',
|
102 |
-
'DLM_WordPress_Log_Item_Repository' => $baseDir . '/src/Logs/WordPressLogItemRepository.php',
|
103 |
-
'DLM_WordPress_Version_Repository' => $baseDir . '/src/Version/WordPressVersionRepository.php',
|
104 |
-
'DateTimeImmutable' => $baseDir . '/src/Polyfill/DateTimeImmutable/DateTimeImmutable.php',
|
105 |
-
'DateTimeInterface' => $baseDir . '/src/Polyfill/DateTimeImmutable/DateTimeInterface.php',
|
106 |
-
'Download_Monitor_Usage_Tracker' => $baseDir . '/includes/tracking/class-download-monitor-usage-tracker.php',
|
107 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Curl' => $baseDir . '/src/Dependencies/PayPalHttp/Curl.php',
|
108 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Encoder' => $baseDir . '/src/Dependencies/PayPalHttp/Encoder.php',
|
109 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Environment' => $baseDir . '/src/Dependencies/PayPalHttp/Environment.php',
|
110 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\HttpClient' => $baseDir . '/src/Dependencies/PayPalHttp/HttpClient.php',
|
111 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\HttpException' => $baseDir . '/src/Dependencies/PayPalHttp/HttpException.php',
|
112 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\HttpRequest' => $baseDir . '/src/Dependencies/PayPalHttp/HttpRequest.php',
|
113 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\HttpResponse' => $baseDir . '/src/Dependencies/PayPalHttp/HttpResponse.php',
|
114 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\IOException' => $baseDir . '/src/Dependencies/PayPalHttp/IOException.php',
|
115 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Injector' => $baseDir . '/src/Dependencies/PayPalHttp/Injector.php',
|
116 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer' => $baseDir . '/src/Dependencies/PayPalHttp/Serializer.php',
|
117 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\Form' => $baseDir . '/src/Dependencies/PayPalHttp/Serializer/Form.php',
|
118 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\FormPart' => $baseDir . '/src/Dependencies/PayPalHttp/Serializer/FormPart.php',
|
119 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\Json' => $baseDir . '/src/Dependencies/PayPalHttp/Serializer/Json.php',
|
120 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\Multipart' => $baseDir . '/src/Dependencies/PayPalHttp/Serializer/Multipart.php',
|
121 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\Text' => $baseDir . '/src/Dependencies/PayPalHttp/Serializer/Text.php',
|
122 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPal\\Api\\CarrierAccount' => $baseDir . '/src/Dependencies/PayPal/Api/CarrierAccount.php',
|
123 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPal\\Api\\OpenIdUserinfo' => $baseDir . '/src/Dependencies/PayPal/Api/OpenIdUserinfo.php',
|
124 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Container' => $baseDir . '/src/Dependencies/Pimple/Container.php',
|
125 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Exception\\ExpectedInvokableException' => $baseDir . '/src/Dependencies/Pimple/Exception/ExpectedInvokableException.php',
|
126 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Exception\\FrozenServiceException' => $baseDir . '/src/Dependencies/Pimple/Exception/FrozenServiceException.php',
|
127 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Exception\\InvalidServiceIdentifierException' => $baseDir . '/src/Dependencies/Pimple/Exception/InvalidServiceIdentifierException.php',
|
128 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Exception\\UnknownIdentifierException' => $baseDir . '/src/Dependencies/Pimple/Exception/UnknownIdentifierException.php',
|
129 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Psr11\\Container' => $baseDir . '/src/Dependencies/Pimple/Psr11/Container.php',
|
130 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Psr11\\ServiceLocator' => $baseDir . '/src/Dependencies/Pimple/Psr11/ServiceLocator.php',
|
131 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\ServiceIterator' => $baseDir . '/src/Dependencies/Pimple/ServiceIterator.php',
|
132 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\ServiceProviderInterface' => $baseDir . '/src/Dependencies/Pimple/ServiceProviderInterface.php',
|
133 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Fixtures\\Invokable' => $baseDir . '/src/Dependencies/Pimple/Tests/Fixtures/Invokable.php',
|
134 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Fixtures\\NonInvokable' => $baseDir . '/src/Dependencies/Pimple/Tests/Fixtures/NonInvokable.php',
|
135 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Fixtures\\PimpleServiceProvider' => $baseDir . '/src/Dependencies/Pimple/Tests/Fixtures/PimpleServiceProvider.php',
|
136 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Fixtures\\Service' => $baseDir . '/src/Dependencies/Pimple/Tests/Fixtures/Service.php',
|
137 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\ServiceIteratorTest' => $baseDir . '/src/Dependencies/Pimple/Tests/ServiceIteratorTest.php',
|
138 |
-
'Never5\\DownloadMonitor\\Dependencies\\Psr\\Container\\ContainerExceptionInterface' => $baseDir . '/src/Dependencies/Psr/Container/ContainerExceptionInterface.php',
|
139 |
-
'Never5\\DownloadMonitor\\Dependencies\\Psr\\Container\\ContainerInterface' => $baseDir . '/src/Dependencies/Psr/Container/ContainerInterface.php',
|
140 |
-
'Never5\\DownloadMonitor\\Dependencies\\Psr\\Container\\NotFoundExceptionInterface' => $baseDir . '/src/Dependencies/Psr/Container/NotFoundExceptionInterface.php',
|
141 |
-
'Never5\\DownloadMonitor\\Shop\\Access\\Manager' => $baseDir . '/src/Shop/Access/Manager.php',
|
142 |
-
'Never5\\DownloadMonitor\\Shop\\Admin\\DownloadOption' => $baseDir . '/src/Shop/Admin/DownloadOption.php',
|
143 |
-
'Never5\\DownloadMonitor\\Shop\\Admin\\Fields\\GatewayOverview' => $baseDir . '/src/Shop/Admin/Fields/GatewayOverview.php',
|
144 |
-
'Never5\\DownloadMonitor\\Shop\\Admin\\OrderTable' => $baseDir . '/src/Shop/Admin/OrderTable.php',
|
145 |
-
'Never5\\DownloadMonitor\\Shop\\Admin\\Pages\\Orders' => $baseDir . '/src/Shop/Admin/Pages/Orders.php',
|
146 |
-
'Never5\\DownloadMonitor\\Shop\\Admin\\ProductTableColumns' => $baseDir . '/src/Shop/Admin/ProductTableColumns.php',
|
147 |
-
'Never5\\DownloadMonitor\\Shop\\Admin\\ShopAdminHelper' => $baseDir . '/src/Shop/Admin/ShopAdminHelper.php',
|
148 |
-
'Never5\\DownloadMonitor\\Shop\\Admin\\WritePanels' => $baseDir . '/src/Shop/Admin/WritePanels.php',
|
149 |
-
'Never5\\DownloadMonitor\\Shop\\Ajax\\AdminChangeOrderStatus' => $baseDir . '/src/Shop/Ajax/AdminChangeOrderStatus.php',
|
150 |
-
'Never5\\DownloadMonitor\\Shop\\Ajax\\Ajax' => $baseDir . '/src/Shop/Ajax/Ajax.php',
|
151 |
-
'Never5\\DownloadMonitor\\Shop\\Ajax\\Manager' => $baseDir . '/src/Shop/Ajax/Manager.php',
|
152 |
-
'Never5\\DownloadMonitor\\Shop\\Ajax\\PlaceOrder' => $baseDir . '/src/Shop/Ajax/PlaceOrder.php',
|
153 |
-
'Never5\\DownloadMonitor\\Shop\\Cart\\Cart' => $baseDir . '/src/Shop/Cart/Cart.php',
|
154 |
-
'Never5\\DownloadMonitor\\Shop\\Cart\\Coupon' => $baseDir . '/src/Shop/Cart/Coupon.php',
|
155 |
-
'Never5\\DownloadMonitor\\Shop\\Cart\\Hooks' => $baseDir . '/src/Shop/Cart/Hooks.php',
|
156 |
-
'Never5\\DownloadMonitor\\Shop\\Cart\\Item\\Factory' => $baseDir . '/src/Shop/Cart/Item/Factory.php',
|
157 |
-
'Never5\\DownloadMonitor\\Shop\\Cart\\Item\\Item' => $baseDir . '/src/Shop/Cart/Item/Item.php',
|
158 |
-
'Never5\\DownloadMonitor\\Shop\\Cart\\Manager' => $baseDir . '/src/Shop/Cart/Manager.php',
|
159 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\Field' => $baseDir . '/src/Shop/Checkout/Field.php',
|
160 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\Manager' => $baseDir . '/src/Shop/Checkout/PaymentGateway/Manager.php',
|
161 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Address' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Address.php',
|
162 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Amount' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Amount.php',
|
163 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\BaseAddress' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/BaseAddress.php',
|
164 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\CartBase' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/CartBase.php',
|
165 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Details' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Details.php',
|
166 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\FormatConverter' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/FormatConverter.php',
|
167 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Item' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Item.php',
|
168 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\ItemList' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/ItemList.php',
|
169 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\NumericValidator' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/NumericValidator.php',
|
170 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Payer' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Payer.php',
|
171 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\PayerInfo' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/PayerInfo.php',
|
172 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\RedirectUrls' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/RedirectUrls.php',
|
173 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Transaction' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Transaction.php',
|
174 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\TransactionBase' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/TransactionBase.php',
|
175 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\UrlValidator' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/UrlValidator.php',
|
176 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\CaptureOrder' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/CaptureOrder.php',
|
177 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\AccessToken' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/AccessToken.php',
|
178 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\AccessTokenRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/AccessTokenRequest.php',
|
179 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\AuthorizationInjector' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/AuthorizationInjector.php',
|
180 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\FPTIInstrumentationInjector' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/FPTIInstrumentationInjector.php',
|
181 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\GzipInjector' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/GzipInjector.php',
|
182 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\PayPalEnvironment' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/PayPalEnvironment.php',
|
183 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\PayPalHttpClient' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/PayPalHttpClient.php',
|
184 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\ProductionEnvironment' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/ProductionEnvironment.php',
|
185 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\RefreshTokenRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/RefreshTokenRequest.php',
|
186 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\SandboxEnvironment' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/SandboxEnvironment.php',
|
187 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\UserAgent' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/UserAgent.php',
|
188 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\Version' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/Version.php',
|
189 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\CreateOrder' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/CreateOrder.php',
|
190 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\ExecutePaymentListener' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/ExecutePaymentListener.php',
|
191 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersAuthorizeRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersAuthorizeRequest.php',
|
192 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersCaptureRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersCaptureRequest.php',
|
193 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersCreateRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersCreateRequest.php',
|
194 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersGetRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersGetRequest.php',
|
195 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersPatchRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersPatchRequest.php',
|
196 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersValidateRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersValidateRequest.php',
|
197 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\PayPalGateway' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/PayPalGateway.php',
|
198 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\AuthorizationsCaptureRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/AuthorizationsCaptureRequest.php',
|
199 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\AuthorizationsGetRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/AuthorizationsGetRequest.php',
|
200 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\AuthorizationsReauthorizeRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/AuthorizationsReauthorizeRequest.php',
|
201 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\AuthorizationsVoidRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/AuthorizationsVoidRequest.php',
|
202 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\CapturesGetRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/CapturesGetRequest.php',
|
203 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\CapturesRefundRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/CapturesRefundRequest.php',
|
204 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\RefundsGetRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/RefundsGetRequest.php',
|
205 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PaymentGateway' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PaymentGateway.php',
|
206 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\Result' => $baseDir . '/src/Shop/Checkout/PaymentGateway/Result.php',
|
207 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\Test\\TestGateway' => $baseDir . '/src/Shop/Checkout/PaymentGateway/Test/TestGateway.php',
|
208 |
-
'Never5\\DownloadMonitor\\Shop\\Email\\Handler' => $baseDir . '/src/Shop/Email/Handler.php',
|
209 |
-
'Never5\\DownloadMonitor\\Shop\\Email\\Message' => $baseDir . '/src/Shop/Email/Message.php',
|
210 |
-
'Never5\\DownloadMonitor\\Shop\\Email\\VarParser' => $baseDir . '/src/Shop/Email/VarParser.php',
|
211 |
-
'Never5\\DownloadMonitor\\Shop\\Helper\\Country' => $baseDir . '/src/Shop/Helper/Country.php',
|
212 |
-
'Never5\\DownloadMonitor\\Shop\\Helper\\Currency' => $baseDir . '/src/Shop/Helper/Currency.php',
|
213 |
-
'Never5\\DownloadMonitor\\Shop\\Helper\\Format' => $baseDir . '/src/Shop/Helper/Format.php',
|
214 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Factory' => $baseDir . '/src/Shop/Order/Factory.php',
|
215 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Manager' => $baseDir . '/src/Shop/Order/Manager.php',
|
216 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Order' => $baseDir . '/src/Shop/Order/Order.php',
|
217 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\OrderCoupon' => $baseDir . '/src/Shop/Order/OrderCoupon.php',
|
218 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\OrderCustomer' => $baseDir . '/src/Shop/Order/OrderCustomer.php',
|
219 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\OrderItem' => $baseDir . '/src/Shop/Order/OrderItem.php',
|
220 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Repository' => $baseDir . '/src/Shop/Order/Repository.php',
|
221 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Status\\Factory' => $baseDir . '/src/Shop/Order/Status/Factory.php',
|
222 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Status\\Manager' => $baseDir . '/src/Shop/Order/Status/Manager.php',
|
223 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Status\\OrderStatus' => $baseDir . '/src/Shop/Order/Status/OrderStatus.php',
|
224 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Transaction\\Factory' => $baseDir . '/src/Shop/Order/Transaction/Factory.php',
|
225 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Transaction\\OrderTransaction' => $baseDir . '/src/Shop/Order/Transaction/OrderTransaction.php',
|
226 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Transaction\\OrderTransactionStatus' => $baseDir . '/src/Shop/Order/Transaction/OrderTransactionStatus.php',
|
227 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\WordPressRepository' => $baseDir . '/src/Shop/Order/WordPressRepository.php',
|
228 |
-
'Never5\\DownloadMonitor\\Shop\\Product\\Factory' => $baseDir . '/src/Shop/Product/Factory.php',
|
229 |
-
'Never5\\DownloadMonitor\\Shop\\Product\\Product' => $baseDir . '/src/Shop/Product/Product.php',
|
230 |
-
'Never5\\DownloadMonitor\\Shop\\Product\\Repository' => $baseDir . '/src/Shop/Product/Repository.php',
|
231 |
-
'Never5\\DownloadMonitor\\Shop\\Product\\WordPressRepository' => $baseDir . '/src/Shop/Product/WordPressRepository.php',
|
232 |
-
'Never5\\DownloadMonitor\\Shop\\Services\\ServiceProvider' => $baseDir . '/src/Shop/Services/ServiceProvider.php',
|
233 |
-
'Never5\\DownloadMonitor\\Shop\\Services\\Services' => $baseDir . '/src/Shop/Services/Services.php',
|
234 |
-
'Never5\\DownloadMonitor\\Shop\\Session\\Cookie' => $baseDir . '/src/Shop/Session/Cookie.php',
|
235 |
-
'Never5\\DownloadMonitor\\Shop\\Session\\Factory' => $baseDir . '/src/Shop/Session/Factory.php',
|
236 |
-
'Never5\\DownloadMonitor\\Shop\\Session\\Item\\Factory' => $baseDir . '/src/Shop/Session/Item/Factory.php',
|
237 |
-
'Never5\\DownloadMonitor\\Shop\\Session\\Item\\Item' => $baseDir . '/src/Shop/Session/Item/Item.php',
|
238 |
-
'Never5\\DownloadMonitor\\Shop\\Session\\Manager' => $baseDir . '/src/Shop/Session/Manager.php',
|
239 |
-
'Never5\\DownloadMonitor\\Shop\\Session\\Repository' => $baseDir . '/src/Shop/Session/Repository.php',
|
240 |
-
'Never5\\DownloadMonitor\\Shop\\Session\\Session' => $baseDir . '/src/Shop/Session/Session.php',
|
241 |
-
'Never5\\DownloadMonitor\\Shop\\Session\\WordPressRepository' => $baseDir . '/src/Shop/Session/WordPressRepository.php',
|
242 |
-
'Never5\\DownloadMonitor\\Shop\\Shortcode\\Buy' => $baseDir . '/src/Shop/Shortcode/Buy.php',
|
243 |
-
'Never5\\DownloadMonitor\\Shop\\Shortcode\\Cart' => $baseDir . '/src/Shop/Shortcode/Cart.php',
|
244 |
-
'Never5\\DownloadMonitor\\Shop\\Shortcode\\Checkout' => $baseDir . '/src/Shop/Shortcode/Checkout.php',
|
245 |
-
'Never5\\DownloadMonitor\\Shop\\Tax\\TaxClassManager' => $baseDir . '/src/Shop/Tax/TaxClassManager.php',
|
246 |
-
'Never5\\DownloadMonitor\\Shop\\Tax\\TaxRate' => $baseDir . '/src/Shop/Tax/TaxRate.php',
|
247 |
-
'Never5\\DownloadMonitor\\Shop\\Util\\Assets' => $baseDir . '/src/Shop/Util/Assets.php',
|
248 |
-
'Never5\\DownloadMonitor\\Shop\\Util\\Page' => $baseDir . '/src/Shop/Util/Page.php',
|
249 |
-
'Never5\\DownloadMonitor\\Shop\\Util\\PostType' => $baseDir . '/src/Shop/Util/PostType.php',
|
250 |
-
'Never5\\DownloadMonitor\\Shop\\Util\\Redirect' => $baseDir . '/src/Shop/Util/Redirect.php',
|
251 |
-
'Never5\\DownloadMonitor\\Shop\\Util\\TemplateInjector' => $baseDir . '/src/Shop/Util/TemplateInjector.php',
|
252 |
-
'Never5\\DownloadMonitor\\Util\\ExtensionLoader' => $baseDir . '/src/Util/ExtensionLoader.php',
|
253 |
-
'Never5\\DownloadMonitor\\Util\\Onboarding' => $baseDir . '/src/Util/Onboarding.php',
|
254 |
-
'Never5\\DownloadMonitor\\Util\\PageCreator' => $baseDir . '/src/Util/PageCreator.php',
|
255 |
-
'WPChill\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\PimpleServiceProviderInterfaceTest' => $baseDir . '/src/Dependencies/Pimple/Tests/PimpleServiceProviderInterfaceTest.php',
|
256 |
-
'WPChill\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\PimpleTest' => $baseDir . '/src/Dependencies/Pimple/Tests/PimpleTest.php',
|
257 |
-
'WPChill\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Psr11\\ContainerTest' => $baseDir . '/src/Dependencies/Pimple/Tests/Psr11/ContainerTest.php',
|
258 |
-
'WPChill\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Psr11\\ServiceLocatorTest' => $baseDir . '/src/Dependencies/Pimple/Tests/Psr11/ServiceLocatorTest.php',
|
259 |
-
'WP_DLM' => $baseDir . '/src/DLM.php',
|
260 |
-
);
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// autoload_classmap.php @generated by Composer
|
4 |
+
|
5 |
+
$vendorDir = dirname(dirname(__FILE__));
|
6 |
+
$baseDir = dirname($vendorDir);
|
7 |
+
|
8 |
+
return array(
|
9 |
+
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
|
10 |
+
'DLM_Admin' => $baseDir . '/src/Admin/Admin.php',
|
11 |
+
'DLM_Admin_Dashboard' => $baseDir . '/src/Admin/Dashboard.php',
|
12 |
+
'DLM_Admin_Extensions' => $baseDir . '/src/Admin/Extensions.php',
|
13 |
+
'DLM_Admin_Fields_Field' => $baseDir . '/src/Admin/Settings/Fields/Field.php',
|
14 |
+
'DLM_Admin_Fields_Field_ActionButton' => $baseDir . '/src/Admin/Settings/Fields/ActionButton.php',
|
15 |
+
'DLM_Admin_Fields_Field_Checkbox' => $baseDir . '/src/Admin/Settings/Fields/Checkbox.php',
|
16 |
+
'DLM_Admin_Fields_Field_Desc' => $baseDir . '/src/Admin/Settings/Fields/Desc.php',
|
17 |
+
'DLM_Admin_Fields_Field_Factory' => $baseDir . '/src/Admin/Settings/Fields/FieldFactory.php',
|
18 |
+
'DLM_Admin_Fields_Field_HtaccessStatus' => $baseDir . '/src/Admin/Settings/Fields/HtaccessStatus.php',
|
19 |
+
'DLM_Admin_Fields_Field_Lazy_Select' => $baseDir . '/src/Admin/Settings/Fields/LazySelect.php',
|
20 |
+
'DLM_Admin_Fields_Field_Password' => $baseDir . '/src/Admin/Settings/Fields/Password.php',
|
21 |
+
'DLM_Admin_Fields_Field_Select' => $baseDir . '/src/Admin/Settings/Fields/Select.php',
|
22 |
+
'DLM_Admin_Fields_Field_Text' => $baseDir . '/src/Admin/Settings/Fields/Text.php',
|
23 |
+
'DLM_Admin_Fields_Field_Textarea' => $baseDir . '/src/Admin/Settings/Fields/Textarea.php',
|
24 |
+
'DLM_Admin_Fields_Field_Title' => $baseDir . '/src/Admin/Settings/Fields/Title.php',
|
25 |
+
'DLM_Admin_Helper' => $baseDir . '/src/Admin/class-dlm-admin-helper.php',
|
26 |
+
'DLM_Admin_Media_Browser' => $baseDir . '/src/Admin/MediaBrowser.php',
|
27 |
+
'DLM_Admin_Media_Insert' => $baseDir . '/src/Admin/MediaInsert.php',
|
28 |
+
'DLM_Admin_OptionsUpsells' => $baseDir . '/src/Admin/OptionsUpsells.php',
|
29 |
+
'DLM_Admin_Scripts' => $baseDir . '/src/Admin/AdminScripts.php',
|
30 |
+
'DLM_Admin_Settings' => $baseDir . '/src/Admin/Settings/Settings.php',
|
31 |
+
'DLM_Admin_Writepanels' => $baseDir . '/src/Admin/WritePanels.php',
|
32 |
+
'DLM_Ajax' => $baseDir . '/src/Ajax/Ajax.php',
|
33 |
+
'DLM_Ajax_CreatePage' => $baseDir . '/src/Ajax/CreatePage.php',
|
34 |
+
'DLM_Ajax_GetDownloads' => $baseDir . '/src/Ajax/GetDownloads.php',
|
35 |
+
'DLM_Ajax_GetVersions' => $baseDir . '/src/Ajax/GetVersions.php',
|
36 |
+
'DLM_Ajax_Handler' => $baseDir . '/src/AjaxHandler.php',
|
37 |
+
'DLM_Ajax_Manager' => $baseDir . '/src/Ajax/Manager.php',
|
38 |
+
'DLM_Category_Walker' => $baseDir . '/src/Admin/CategoryWalker.php',
|
39 |
+
'DLM_Constants' => $baseDir . '/src/Constants.php',
|
40 |
+
'DLM_Cookie_Manager' => $baseDir . '/src/CookieManager.php',
|
41 |
+
'DLM_Custom_Actions' => $baseDir . '/src/Admin/CustomActions.php',
|
42 |
+
'DLM_Custom_Columns' => $baseDir . '/src/Admin/CustomColumns.php',
|
43 |
+
'DLM_Custom_Labels' => $baseDir . '/src/Admin/CustomLabels.php',
|
44 |
+
'DLM_Debug_Logger' => $baseDir . '/src/DebugLogger.php',
|
45 |
+
'DLM_Download' => $baseDir . '/src/Download/Download.php',
|
46 |
+
'DLM_DownloadPreview_Config' => $baseDir . '/src/DownloadPreview/Config.php',
|
47 |
+
'DLM_DownloadPreview_Preview' => $baseDir . '/src/DownloadPreview/Preview.php',
|
48 |
+
'DLM_Download_Duplicator_AAM' => $baseDir . '/src/Admin/Duplicate/DownloadDuplicatorAAM.php',
|
49 |
+
'DLM_Download_Factory' => $baseDir . '/src/Download/DownloadFactory.php',
|
50 |
+
'DLM_Download_Handler' => $baseDir . '/src/DownloadHandler.php',
|
51 |
+
'DLM_Download_No_Access_Page_Endpoint' => $baseDir . '/src/DownloadNoAccessPageEndpoint.php',
|
52 |
+
'DLM_Download_Repository' => $baseDir . '/src/Download/DownloadRepository.php',
|
53 |
+
'DLM_Download_Version' => $baseDir . '/src/Version/Version.php',
|
54 |
+
'DLM_File_Manager' => $baseDir . '/src/FileManager.php',
|
55 |
+
'DLM_Gutenberg' => $baseDir . '/src/Gutenberg.php',
|
56 |
+
'DLM_Hasher' => $baseDir . '/src/Hasher.php',
|
57 |
+
'DLM_Installer' => $baseDir . '/src/Installer.php',
|
58 |
+
'DLM_Integrations_PostTypesOrder' => $baseDir . '/src/Integrations/PostTypesOrder.php',
|
59 |
+
'DLM_Integrations_YoastSEO' => $baseDir . '/src/Integrations/YoastSEO.php',
|
60 |
+
'DLM_LU_Ajax' => $baseDir . '/src/LegacyUpgrader/Ajax.php',
|
61 |
+
'DLM_LU_Checker' => $baseDir . '/src/LegacyUpgrader/Checker.php',
|
62 |
+
'DLM_LU_Content_Queue' => $baseDir . '/src/LegacyUpgrader/ContentQueue.php',
|
63 |
+
'DLM_LU_Content_Upgrader' => $baseDir . '/src/LegacyUpgrader/ContentUpgrader.php',
|
64 |
+
'DLM_LU_Download_Queue' => $baseDir . '/src/LegacyUpgrader/DownloadQueue.php',
|
65 |
+
'DLM_LU_Download_Upgrader' => $baseDir . '/src/LegacyUpgrader/DownloadUpgrader.php',
|
66 |
+
'DLM_LU_Message' => $baseDir . '/src/LegacyUpgrader/Message.php',
|
67 |
+
'DLM_LU_Page' => $baseDir . '/src/LegacyUpgrader/Page.php',
|
68 |
+
'DLM_Log_Export_CSV' => $baseDir . '/src/Logs/LogExportCSV.php',
|
69 |
+
'DLM_Log_Filters' => $baseDir . '/src/Logs/LogFilters.php',
|
70 |
+
'DLM_Log_Item' => $baseDir . '/src/Logs/LogItem.php',
|
71 |
+
'DLM_Log_Item_Repository' => $baseDir . '/src/Logs/LogItemRepository.php',
|
72 |
+
'DLM_Log_Page' => $baseDir . '/src/Logs/LogPage.php',
|
73 |
+
'DLM_Logging' => $baseDir . '/src/Logs/Logging.php',
|
74 |
+
'DLM_Logging_List_Table' => $baseDir . '/src/Logs/LoggingListTable.php',
|
75 |
+
'DLM_Post_Type_Manager' => $baseDir . '/src/PostTypeManager.php',
|
76 |
+
'DLM_Product' => $baseDir . '/src/Product/Product.php',
|
77 |
+
'DLM_Product_Error_Handler' => $baseDir . '/src/Product/ProductErrorHandler.php',
|
78 |
+
'DLM_Product_License' => $baseDir . '/src/Product/ProductLicense.php',
|
79 |
+
'DLM_Product_Manager' => $baseDir . '/src/Product/ProductManager.php',
|
80 |
+
'DLM_Reports_Ajax' => $baseDir . '/src/Admin/Reports/Ajax.php',
|
81 |
+
'DLM_Reports_Chart' => $baseDir . '/src/Admin/Reports/Chart.php',
|
82 |
+
'DLM_Reports_Page' => $baseDir . '/src/Admin/Reports/Page.php',
|
83 |
+
'DLM_Review' => $baseDir . '/includes/admin/class-dlm-review.php',
|
84 |
+
'DLM_Search' => $baseDir . '/src/Search.php',
|
85 |
+
'DLM_Services' => $baseDir . '/src/Services.php',
|
86 |
+
'DLM_Settings_Helper' => $baseDir . '/src/Admin/Settings/SettingsHelper.php',
|
87 |
+
'DLM_Settings_Page' => $baseDir . '/src/Admin/Settings/Page.php',
|
88 |
+
'DLM_Shortcodes' => $baseDir . '/src/Shortcodes.php',
|
89 |
+
'DLM_Taxonomy_Manager' => $baseDir . '/src/TaxonomyManager.php',
|
90 |
+
'DLM_Template_Handler' => $baseDir . '/src/TemplateHandler.php',
|
91 |
+
'DLM_Transient_Manager' => $baseDir . '/src/TransientManager.php',
|
92 |
+
'DLM_Uninstall' => $baseDir . '/includes/admin/uninstall/class-dlm-uninstall.php',
|
93 |
+
'DLM_Upgrade_Manager' => $baseDir . '/src/UpgradeManager.php',
|
94 |
+
'DLM_Upsells' => $baseDir . '/includes/admin/class-dlm-upsells.php',
|
95 |
+
'DLM_Utils' => $baseDir . '/src/Utils.php',
|
96 |
+
'DLM_Version_Manager' => $baseDir . '/src/Version/VersionManager.php',
|
97 |
+
'DLM_Version_Repository' => $baseDir . '/src/Version/VersionRepository.php',
|
98 |
+
'DLM_View_Manager' => $baseDir . '/src/Admin/ViewManager.php',
|
99 |
+
'DLM_Widget_Downloads' => $baseDir . '/src/Widgets/Downloads.php',
|
100 |
+
'DLM_Widget_Manager' => $baseDir . '/src/Widgets/Manager.php',
|
101 |
+
'DLM_WordPress_Download_Repository' => $baseDir . '/src/Download/WordPressDownloadRepository.php',
|
102 |
+
'DLM_WordPress_Log_Item_Repository' => $baseDir . '/src/Logs/WordPressLogItemRepository.php',
|
103 |
+
'DLM_WordPress_Version_Repository' => $baseDir . '/src/Version/WordPressVersionRepository.php',
|
104 |
+
'DateTimeImmutable' => $baseDir . '/src/Polyfill/DateTimeImmutable/DateTimeImmutable.php',
|
105 |
+
'DateTimeInterface' => $baseDir . '/src/Polyfill/DateTimeImmutable/DateTimeInterface.php',
|
106 |
+
'Download_Monitor_Usage_Tracker' => $baseDir . '/includes/tracking/class-download-monitor-usage-tracker.php',
|
107 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Curl' => $baseDir . '/src/Dependencies/PayPalHttp/Curl.php',
|
108 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Encoder' => $baseDir . '/src/Dependencies/PayPalHttp/Encoder.php',
|
109 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Environment' => $baseDir . '/src/Dependencies/PayPalHttp/Environment.php',
|
110 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\HttpClient' => $baseDir . '/src/Dependencies/PayPalHttp/HttpClient.php',
|
111 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\HttpException' => $baseDir . '/src/Dependencies/PayPalHttp/HttpException.php',
|
112 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\HttpRequest' => $baseDir . '/src/Dependencies/PayPalHttp/HttpRequest.php',
|
113 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\HttpResponse' => $baseDir . '/src/Dependencies/PayPalHttp/HttpResponse.php',
|
114 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\IOException' => $baseDir . '/src/Dependencies/PayPalHttp/IOException.php',
|
115 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Injector' => $baseDir . '/src/Dependencies/PayPalHttp/Injector.php',
|
116 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer' => $baseDir . '/src/Dependencies/PayPalHttp/Serializer.php',
|
117 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\Form' => $baseDir . '/src/Dependencies/PayPalHttp/Serializer/Form.php',
|
118 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\FormPart' => $baseDir . '/src/Dependencies/PayPalHttp/Serializer/FormPart.php',
|
119 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\Json' => $baseDir . '/src/Dependencies/PayPalHttp/Serializer/Json.php',
|
120 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\Multipart' => $baseDir . '/src/Dependencies/PayPalHttp/Serializer/Multipart.php',
|
121 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\Text' => $baseDir . '/src/Dependencies/PayPalHttp/Serializer/Text.php',
|
122 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPal\\Api\\CarrierAccount' => $baseDir . '/src/Dependencies/PayPal/Api/CarrierAccount.php',
|
123 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPal\\Api\\OpenIdUserinfo' => $baseDir . '/src/Dependencies/PayPal/Api/OpenIdUserinfo.php',
|
124 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Container' => $baseDir . '/src/Dependencies/Pimple/Container.php',
|
125 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Exception\\ExpectedInvokableException' => $baseDir . '/src/Dependencies/Pimple/Exception/ExpectedInvokableException.php',
|
126 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Exception\\FrozenServiceException' => $baseDir . '/src/Dependencies/Pimple/Exception/FrozenServiceException.php',
|
127 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Exception\\InvalidServiceIdentifierException' => $baseDir . '/src/Dependencies/Pimple/Exception/InvalidServiceIdentifierException.php',
|
128 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Exception\\UnknownIdentifierException' => $baseDir . '/src/Dependencies/Pimple/Exception/UnknownIdentifierException.php',
|
129 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Psr11\\Container' => $baseDir . '/src/Dependencies/Pimple/Psr11/Container.php',
|
130 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Psr11\\ServiceLocator' => $baseDir . '/src/Dependencies/Pimple/Psr11/ServiceLocator.php',
|
131 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\ServiceIterator' => $baseDir . '/src/Dependencies/Pimple/ServiceIterator.php',
|
132 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\ServiceProviderInterface' => $baseDir . '/src/Dependencies/Pimple/ServiceProviderInterface.php',
|
133 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Fixtures\\Invokable' => $baseDir . '/src/Dependencies/Pimple/Tests/Fixtures/Invokable.php',
|
134 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Fixtures\\NonInvokable' => $baseDir . '/src/Dependencies/Pimple/Tests/Fixtures/NonInvokable.php',
|
135 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Fixtures\\PimpleServiceProvider' => $baseDir . '/src/Dependencies/Pimple/Tests/Fixtures/PimpleServiceProvider.php',
|
136 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Fixtures\\Service' => $baseDir . '/src/Dependencies/Pimple/Tests/Fixtures/Service.php',
|
137 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\ServiceIteratorTest' => $baseDir . '/src/Dependencies/Pimple/Tests/ServiceIteratorTest.php',
|
138 |
+
'Never5\\DownloadMonitor\\Dependencies\\Psr\\Container\\ContainerExceptionInterface' => $baseDir . '/src/Dependencies/Psr/Container/ContainerExceptionInterface.php',
|
139 |
+
'Never5\\DownloadMonitor\\Dependencies\\Psr\\Container\\ContainerInterface' => $baseDir . '/src/Dependencies/Psr/Container/ContainerInterface.php',
|
140 |
+
'Never5\\DownloadMonitor\\Dependencies\\Psr\\Container\\NotFoundExceptionInterface' => $baseDir . '/src/Dependencies/Psr/Container/NotFoundExceptionInterface.php',
|
141 |
+
'Never5\\DownloadMonitor\\Shop\\Access\\Manager' => $baseDir . '/src/Shop/Access/Manager.php',
|
142 |
+
'Never5\\DownloadMonitor\\Shop\\Admin\\DownloadOption' => $baseDir . '/src/Shop/Admin/DownloadOption.php',
|
143 |
+
'Never5\\DownloadMonitor\\Shop\\Admin\\Fields\\GatewayOverview' => $baseDir . '/src/Shop/Admin/Fields/GatewayOverview.php',
|
144 |
+
'Never5\\DownloadMonitor\\Shop\\Admin\\OrderTable' => $baseDir . '/src/Shop/Admin/OrderTable.php',
|
145 |
+
'Never5\\DownloadMonitor\\Shop\\Admin\\Pages\\Orders' => $baseDir . '/src/Shop/Admin/Pages/Orders.php',
|
146 |
+
'Never5\\DownloadMonitor\\Shop\\Admin\\ProductTableColumns' => $baseDir . '/src/Shop/Admin/ProductTableColumns.php',
|
147 |
+
'Never5\\DownloadMonitor\\Shop\\Admin\\ShopAdminHelper' => $baseDir . '/src/Shop/Admin/ShopAdminHelper.php',
|
148 |
+
'Never5\\DownloadMonitor\\Shop\\Admin\\WritePanels' => $baseDir . '/src/Shop/Admin/WritePanels.php',
|
149 |
+
'Never5\\DownloadMonitor\\Shop\\Ajax\\AdminChangeOrderStatus' => $baseDir . '/src/Shop/Ajax/AdminChangeOrderStatus.php',
|
150 |
+
'Never5\\DownloadMonitor\\Shop\\Ajax\\Ajax' => $baseDir . '/src/Shop/Ajax/Ajax.php',
|
151 |
+
'Never5\\DownloadMonitor\\Shop\\Ajax\\Manager' => $baseDir . '/src/Shop/Ajax/Manager.php',
|
152 |
+
'Never5\\DownloadMonitor\\Shop\\Ajax\\PlaceOrder' => $baseDir . '/src/Shop/Ajax/PlaceOrder.php',
|
153 |
+
'Never5\\DownloadMonitor\\Shop\\Cart\\Cart' => $baseDir . '/src/Shop/Cart/Cart.php',
|
154 |
+
'Never5\\DownloadMonitor\\Shop\\Cart\\Coupon' => $baseDir . '/src/Shop/Cart/Coupon.php',
|
155 |
+
'Never5\\DownloadMonitor\\Shop\\Cart\\Hooks' => $baseDir . '/src/Shop/Cart/Hooks.php',
|
156 |
+
'Never5\\DownloadMonitor\\Shop\\Cart\\Item\\Factory' => $baseDir . '/src/Shop/Cart/Item/Factory.php',
|
157 |
+
'Never5\\DownloadMonitor\\Shop\\Cart\\Item\\Item' => $baseDir . '/src/Shop/Cart/Item/Item.php',
|
158 |
+
'Never5\\DownloadMonitor\\Shop\\Cart\\Manager' => $baseDir . '/src/Shop/Cart/Manager.php',
|
159 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\Field' => $baseDir . '/src/Shop/Checkout/Field.php',
|
160 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\Manager' => $baseDir . '/src/Shop/Checkout/PaymentGateway/Manager.php',
|
161 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Address' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Address.php',
|
162 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Amount' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Amount.php',
|
163 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\BaseAddress' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/BaseAddress.php',
|
164 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\CartBase' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/CartBase.php',
|
165 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Details' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Details.php',
|
166 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\FormatConverter' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/FormatConverter.php',
|
167 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Item' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Item.php',
|
168 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\ItemList' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/ItemList.php',
|
169 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\NumericValidator' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/NumericValidator.php',
|
170 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Payer' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Payer.php',
|
171 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\PayerInfo' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/PayerInfo.php',
|
172 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\RedirectUrls' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/RedirectUrls.php',
|
173 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Transaction' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Transaction.php',
|
174 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\TransactionBase' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/TransactionBase.php',
|
175 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\UrlValidator' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/UrlValidator.php',
|
176 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\CaptureOrder' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/CaptureOrder.php',
|
177 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\AccessToken' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/AccessToken.php',
|
178 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\AccessTokenRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/AccessTokenRequest.php',
|
179 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\AuthorizationInjector' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/AuthorizationInjector.php',
|
180 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\FPTIInstrumentationInjector' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/FPTIInstrumentationInjector.php',
|
181 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\GzipInjector' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/GzipInjector.php',
|
182 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\PayPalEnvironment' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/PayPalEnvironment.php',
|
183 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\PayPalHttpClient' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/PayPalHttpClient.php',
|
184 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\ProductionEnvironment' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/ProductionEnvironment.php',
|
185 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\RefreshTokenRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/RefreshTokenRequest.php',
|
186 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\SandboxEnvironment' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/SandboxEnvironment.php',
|
187 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\UserAgent' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/UserAgent.php',
|
188 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\Version' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/Version.php',
|
189 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\CreateOrder' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/CreateOrder.php',
|
190 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\ExecutePaymentListener' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/ExecutePaymentListener.php',
|
191 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersAuthorizeRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersAuthorizeRequest.php',
|
192 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersCaptureRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersCaptureRequest.php',
|
193 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersCreateRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersCreateRequest.php',
|
194 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersGetRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersGetRequest.php',
|
195 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersPatchRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersPatchRequest.php',
|
196 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersValidateRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersValidateRequest.php',
|
197 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\PayPalGateway' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/PayPalGateway.php',
|
198 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\AuthorizationsCaptureRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/AuthorizationsCaptureRequest.php',
|
199 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\AuthorizationsGetRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/AuthorizationsGetRequest.php',
|
200 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\AuthorizationsReauthorizeRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/AuthorizationsReauthorizeRequest.php',
|
201 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\AuthorizationsVoidRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/AuthorizationsVoidRequest.php',
|
202 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\CapturesGetRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/CapturesGetRequest.php',
|
203 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\CapturesRefundRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/CapturesRefundRequest.php',
|
204 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\RefundsGetRequest' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/RefundsGetRequest.php',
|
205 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PaymentGateway' => $baseDir . '/src/Shop/Checkout/PaymentGateway/PaymentGateway.php',
|
206 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\Result' => $baseDir . '/src/Shop/Checkout/PaymentGateway/Result.php',
|
207 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\Test\\TestGateway' => $baseDir . '/src/Shop/Checkout/PaymentGateway/Test/TestGateway.php',
|
208 |
+
'Never5\\DownloadMonitor\\Shop\\Email\\Handler' => $baseDir . '/src/Shop/Email/Handler.php',
|
209 |
+
'Never5\\DownloadMonitor\\Shop\\Email\\Message' => $baseDir . '/src/Shop/Email/Message.php',
|
210 |
+
'Never5\\DownloadMonitor\\Shop\\Email\\VarParser' => $baseDir . '/src/Shop/Email/VarParser.php',
|
211 |
+
'Never5\\DownloadMonitor\\Shop\\Helper\\Country' => $baseDir . '/src/Shop/Helper/Country.php',
|
212 |
+
'Never5\\DownloadMonitor\\Shop\\Helper\\Currency' => $baseDir . '/src/Shop/Helper/Currency.php',
|
213 |
+
'Never5\\DownloadMonitor\\Shop\\Helper\\Format' => $baseDir . '/src/Shop/Helper/Format.php',
|
214 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Factory' => $baseDir . '/src/Shop/Order/Factory.php',
|
215 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Manager' => $baseDir . '/src/Shop/Order/Manager.php',
|
216 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Order' => $baseDir . '/src/Shop/Order/Order.php',
|
217 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\OrderCoupon' => $baseDir . '/src/Shop/Order/OrderCoupon.php',
|
218 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\OrderCustomer' => $baseDir . '/src/Shop/Order/OrderCustomer.php',
|
219 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\OrderItem' => $baseDir . '/src/Shop/Order/OrderItem.php',
|
220 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Repository' => $baseDir . '/src/Shop/Order/Repository.php',
|
221 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Status\\Factory' => $baseDir . '/src/Shop/Order/Status/Factory.php',
|
222 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Status\\Manager' => $baseDir . '/src/Shop/Order/Status/Manager.php',
|
223 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Status\\OrderStatus' => $baseDir . '/src/Shop/Order/Status/OrderStatus.php',
|
224 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Transaction\\Factory' => $baseDir . '/src/Shop/Order/Transaction/Factory.php',
|
225 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Transaction\\OrderTransaction' => $baseDir . '/src/Shop/Order/Transaction/OrderTransaction.php',
|
226 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Transaction\\OrderTransactionStatus' => $baseDir . '/src/Shop/Order/Transaction/OrderTransactionStatus.php',
|
227 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\WordPressRepository' => $baseDir . '/src/Shop/Order/WordPressRepository.php',
|
228 |
+
'Never5\\DownloadMonitor\\Shop\\Product\\Factory' => $baseDir . '/src/Shop/Product/Factory.php',
|
229 |
+
'Never5\\DownloadMonitor\\Shop\\Product\\Product' => $baseDir . '/src/Shop/Product/Product.php',
|
230 |
+
'Never5\\DownloadMonitor\\Shop\\Product\\Repository' => $baseDir . '/src/Shop/Product/Repository.php',
|
231 |
+
'Never5\\DownloadMonitor\\Shop\\Product\\WordPressRepository' => $baseDir . '/src/Shop/Product/WordPressRepository.php',
|
232 |
+
'Never5\\DownloadMonitor\\Shop\\Services\\ServiceProvider' => $baseDir . '/src/Shop/Services/ServiceProvider.php',
|
233 |
+
'Never5\\DownloadMonitor\\Shop\\Services\\Services' => $baseDir . '/src/Shop/Services/Services.php',
|
234 |
+
'Never5\\DownloadMonitor\\Shop\\Session\\Cookie' => $baseDir . '/src/Shop/Session/Cookie.php',
|
235 |
+
'Never5\\DownloadMonitor\\Shop\\Session\\Factory' => $baseDir . '/src/Shop/Session/Factory.php',
|
236 |
+
'Never5\\DownloadMonitor\\Shop\\Session\\Item\\Factory' => $baseDir . '/src/Shop/Session/Item/Factory.php',
|
237 |
+
'Never5\\DownloadMonitor\\Shop\\Session\\Item\\Item' => $baseDir . '/src/Shop/Session/Item/Item.php',
|
238 |
+
'Never5\\DownloadMonitor\\Shop\\Session\\Manager' => $baseDir . '/src/Shop/Session/Manager.php',
|
239 |
+
'Never5\\DownloadMonitor\\Shop\\Session\\Repository' => $baseDir . '/src/Shop/Session/Repository.php',
|
240 |
+
'Never5\\DownloadMonitor\\Shop\\Session\\Session' => $baseDir . '/src/Shop/Session/Session.php',
|
241 |
+
'Never5\\DownloadMonitor\\Shop\\Session\\WordPressRepository' => $baseDir . '/src/Shop/Session/WordPressRepository.php',
|
242 |
+
'Never5\\DownloadMonitor\\Shop\\Shortcode\\Buy' => $baseDir . '/src/Shop/Shortcode/Buy.php',
|
243 |
+
'Never5\\DownloadMonitor\\Shop\\Shortcode\\Cart' => $baseDir . '/src/Shop/Shortcode/Cart.php',
|
244 |
+
'Never5\\DownloadMonitor\\Shop\\Shortcode\\Checkout' => $baseDir . '/src/Shop/Shortcode/Checkout.php',
|
245 |
+
'Never5\\DownloadMonitor\\Shop\\Tax\\TaxClassManager' => $baseDir . '/src/Shop/Tax/TaxClassManager.php',
|
246 |
+
'Never5\\DownloadMonitor\\Shop\\Tax\\TaxRate' => $baseDir . '/src/Shop/Tax/TaxRate.php',
|
247 |
+
'Never5\\DownloadMonitor\\Shop\\Util\\Assets' => $baseDir . '/src/Shop/Util/Assets.php',
|
248 |
+
'Never5\\DownloadMonitor\\Shop\\Util\\Page' => $baseDir . '/src/Shop/Util/Page.php',
|
249 |
+
'Never5\\DownloadMonitor\\Shop\\Util\\PostType' => $baseDir . '/src/Shop/Util/PostType.php',
|
250 |
+
'Never5\\DownloadMonitor\\Shop\\Util\\Redirect' => $baseDir . '/src/Shop/Util/Redirect.php',
|
251 |
+
'Never5\\DownloadMonitor\\Shop\\Util\\TemplateInjector' => $baseDir . '/src/Shop/Util/TemplateInjector.php',
|
252 |
+
'Never5\\DownloadMonitor\\Util\\ExtensionLoader' => $baseDir . '/src/Util/ExtensionLoader.php',
|
253 |
+
'Never5\\DownloadMonitor\\Util\\Onboarding' => $baseDir . '/src/Util/Onboarding.php',
|
254 |
+
'Never5\\DownloadMonitor\\Util\\PageCreator' => $baseDir . '/src/Util/PageCreator.php',
|
255 |
+
'WPChill\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\PimpleServiceProviderInterfaceTest' => $baseDir . '/src/Dependencies/Pimple/Tests/PimpleServiceProviderInterfaceTest.php',
|
256 |
+
'WPChill\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\PimpleTest' => $baseDir . '/src/Dependencies/Pimple/Tests/PimpleTest.php',
|
257 |
+
'WPChill\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Psr11\\ContainerTest' => $baseDir . '/src/Dependencies/Pimple/Tests/Psr11/ContainerTest.php',
|
258 |
+
'WPChill\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Psr11\\ServiceLocatorTest' => $baseDir . '/src/Dependencies/Pimple/Tests/Psr11/ServiceLocatorTest.php',
|
259 |
+
'WP_DLM' => $baseDir . '/src/DLM.php',
|
260 |
+
);
|
vendor/composer/autoload_real.php
CHANGED
@@ -1,55 +1,55 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
// autoload_real.php @generated by Composer
|
4 |
-
|
5 |
-
class ComposerAutoloaderInit80ce4473100edd20fd6c17775a76ce9a
|
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 |
-
spl_autoload_register(array('ComposerAutoloaderInit80ce4473100edd20fd6c17775a76ce9a', 'loadClassLoader'), true, true);
|
26 |
-
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
|
27 |
-
spl_autoload_unregister(array('ComposerAutoloaderInit80ce4473100edd20fd6c17775a76ce9a', 'loadClassLoader'));
|
28 |
-
|
29 |
-
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
30 |
-
if ($useStaticLoader) {
|
31 |
-
require __DIR__ . '/autoload_static.php';
|
32 |
-
|
33 |
-
call_user_func(\Composer\Autoload\ComposerStaticInit80ce4473100edd20fd6c17775a76ce9a::getInitializer($loader));
|
34 |
-
} else {
|
35 |
-
$map = require __DIR__ . '/autoload_namespaces.php';
|
36 |
-
foreach ($map as $namespace => $path) {
|
37 |
-
$loader->set($namespace, $path);
|
38 |
-
}
|
39 |
-
|
40 |
-
$map = require __DIR__ . '/autoload_psr4.php';
|
41 |
-
foreach ($map as $namespace => $path) {
|
42 |
-
$loader->setPsr4($namespace, $path);
|
43 |
-
}
|
44 |
-
|
45 |
-
$classMap = require __DIR__ . '/autoload_classmap.php';
|
46 |
-
if ($classMap) {
|
47 |
-
$loader->addClassMap($classMap);
|
48 |
-
}
|
49 |
-
}
|
50 |
-
|
51 |
-
$loader->register(true);
|
52 |
-
|
53 |
-
return $loader;
|
54 |
-
}
|
55 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// autoload_real.php @generated by Composer
|
4 |
+
|
5 |
+
class ComposerAutoloaderInit80ce4473100edd20fd6c17775a76ce9a
|
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 |
+
spl_autoload_register(array('ComposerAutoloaderInit80ce4473100edd20fd6c17775a76ce9a', 'loadClassLoader'), true, true);
|
26 |
+
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
|
27 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit80ce4473100edd20fd6c17775a76ce9a', 'loadClassLoader'));
|
28 |
+
|
29 |
+
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
30 |
+
if ($useStaticLoader) {
|
31 |
+
require __DIR__ . '/autoload_static.php';
|
32 |
+
|
33 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit80ce4473100edd20fd6c17775a76ce9a::getInitializer($loader));
|
34 |
+
} else {
|
35 |
+
$map = require __DIR__ . '/autoload_namespaces.php';
|
36 |
+
foreach ($map as $namespace => $path) {
|
37 |
+
$loader->set($namespace, $path);
|
38 |
+
}
|
39 |
+
|
40 |
+
$map = require __DIR__ . '/autoload_psr4.php';
|
41 |
+
foreach ($map as $namespace => $path) {
|
42 |
+
$loader->setPsr4($namespace, $path);
|
43 |
+
}
|
44 |
+
|
45 |
+
$classMap = require __DIR__ . '/autoload_classmap.php';
|
46 |
+
if ($classMap) {
|
47 |
+
$loader->addClassMap($classMap);
|
48 |
+
}
|
49 |
+
}
|
50 |
+
|
51 |
+
$loader->register(true);
|
52 |
+
|
53 |
+
return $loader;
|
54 |
+
}
|
55 |
+
}
|
vendor/composer/autoload_static.php
CHANGED
@@ -1,286 +1,286 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
// autoload_static.php @generated by Composer
|
4 |
-
|
5 |
-
namespace Composer\Autoload;
|
6 |
-
|
7 |
-
class ComposerStaticInit80ce4473100edd20fd6c17775a76ce9a
|
8 |
-
{
|
9 |
-
public static $prefixLengthsPsr4 = array (
|
10 |
-
'N' =>
|
11 |
-
array (
|
12 |
-
'Never5\\DownloadMonitor\\' => 23,
|
13 |
-
),
|
14 |
-
);
|
15 |
-
|
16 |
-
public static $prefixDirsPsr4 = array (
|
17 |
-
'Never5\\DownloadMonitor\\' =>
|
18 |
-
array (
|
19 |
-
0 => __DIR__ . '/../..' . '/src',
|
20 |
-
),
|
21 |
-
);
|
22 |
-
|
23 |
-
public static $classMap = array (
|
24 |
-
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
|
25 |
-
'DLM_Admin' => __DIR__ . '/../..' . '/src/Admin/Admin.php',
|
26 |
-
'DLM_Admin_Dashboard' => __DIR__ . '/../..' . '/src/Admin/Dashboard.php',
|
27 |
-
'DLM_Admin_Extensions' => __DIR__ . '/../..' . '/src/Admin/Extensions.php',
|
28 |
-
'DLM_Admin_Fields_Field' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/Field.php',
|
29 |
-
'DLM_Admin_Fields_Field_ActionButton' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/ActionButton.php',
|
30 |
-
'DLM_Admin_Fields_Field_Checkbox' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/Checkbox.php',
|
31 |
-
'DLM_Admin_Fields_Field_Desc' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/Desc.php',
|
32 |
-
'DLM_Admin_Fields_Field_Factory' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/FieldFactory.php',
|
33 |
-
'DLM_Admin_Fields_Field_HtaccessStatus' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/HtaccessStatus.php',
|
34 |
-
'DLM_Admin_Fields_Field_Lazy_Select' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/LazySelect.php',
|
35 |
-
'DLM_Admin_Fields_Field_Password' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/Password.php',
|
36 |
-
'DLM_Admin_Fields_Field_Select' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/Select.php',
|
37 |
-
'DLM_Admin_Fields_Field_Text' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/Text.php',
|
38 |
-
'DLM_Admin_Fields_Field_Textarea' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/Textarea.php',
|
39 |
-
'DLM_Admin_Fields_Field_Title' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/Title.php',
|
40 |
-
'DLM_Admin_Helper' => __DIR__ . '/../..' . '/src/Admin/class-dlm-admin-helper.php',
|
41 |
-
'DLM_Admin_Media_Browser' => __DIR__ . '/../..' . '/src/Admin/MediaBrowser.php',
|
42 |
-
'DLM_Admin_Media_Insert' => __DIR__ . '/../..' . '/src/Admin/MediaInsert.php',
|
43 |
-
'DLM_Admin_OptionsUpsells' => __DIR__ . '/../..' . '/src/Admin/OptionsUpsells.php',
|
44 |
-
'DLM_Admin_Scripts' => __DIR__ . '/../..' . '/src/Admin/AdminScripts.php',
|
45 |
-
'DLM_Admin_Settings' => __DIR__ . '/../..' . '/src/Admin/Settings/Settings.php',
|
46 |
-
'DLM_Admin_Writepanels' => __DIR__ . '/../..' . '/src/Admin/WritePanels.php',
|
47 |
-
'DLM_Ajax' => __DIR__ . '/../..' . '/src/Ajax/Ajax.php',
|
48 |
-
'DLM_Ajax_CreatePage' => __DIR__ . '/../..' . '/src/Ajax/CreatePage.php',
|
49 |
-
'DLM_Ajax_GetDownloads' => __DIR__ . '/../..' . '/src/Ajax/GetDownloads.php',
|
50 |
-
'DLM_Ajax_GetVersions' => __DIR__ . '/../..' . '/src/Ajax/GetVersions.php',
|
51 |
-
'DLM_Ajax_Handler' => __DIR__ . '/../..' . '/src/AjaxHandler.php',
|
52 |
-
'DLM_Ajax_Manager' => __DIR__ . '/../..' . '/src/Ajax/Manager.php',
|
53 |
-
'DLM_Category_Walker' => __DIR__ . '/../..' . '/src/Admin/CategoryWalker.php',
|
54 |
-
'DLM_Constants' => __DIR__ . '/../..' . '/src/Constants.php',
|
55 |
-
'DLM_Cookie_Manager' => __DIR__ . '/../..' . '/src/CookieManager.php',
|
56 |
-
'DLM_Custom_Actions' => __DIR__ . '/../..' . '/src/Admin/CustomActions.php',
|
57 |
-
'DLM_Custom_Columns' => __DIR__ . '/../..' . '/src/Admin/CustomColumns.php',
|
58 |
-
'DLM_Custom_Labels' => __DIR__ . '/../..' . '/src/Admin/CustomLabels.php',
|
59 |
-
'DLM_Debug_Logger' => __DIR__ . '/../..' . '/src/DebugLogger.php',
|
60 |
-
'DLM_Download' => __DIR__ . '/../..' . '/src/Download/Download.php',
|
61 |
-
'DLM_DownloadPreview_Config' => __DIR__ . '/../..' . '/src/DownloadPreview/Config.php',
|
62 |
-
'DLM_DownloadPreview_Preview' => __DIR__ . '/../..' . '/src/DownloadPreview/Preview.php',
|
63 |
-
'DLM_Download_Duplicator_AAM' => __DIR__ . '/../..' . '/src/Admin/Duplicate/DownloadDuplicatorAAM.php',
|
64 |
-
'DLM_Download_Factory' => __DIR__ . '/../..' . '/src/Download/DownloadFactory.php',
|
65 |
-
'DLM_Download_Handler' => __DIR__ . '/../..' . '/src/DownloadHandler.php',
|
66 |
-
'DLM_Download_No_Access_Page_Endpoint' => __DIR__ . '/../..' . '/src/DownloadNoAccessPageEndpoint.php',
|
67 |
-
'DLM_Download_Repository' => __DIR__ . '/../..' . '/src/Download/DownloadRepository.php',
|
68 |
-
'DLM_Download_Version' => __DIR__ . '/../..' . '/src/Version/Version.php',
|
69 |
-
'DLM_File_Manager' => __DIR__ . '/../..' . '/src/FileManager.php',
|
70 |
-
'DLM_Gutenberg' => __DIR__ . '/../..' . '/src/Gutenberg.php',
|
71 |
-
'DLM_Hasher' => __DIR__ . '/../..' . '/src/Hasher.php',
|
72 |
-
'DLM_Installer' => __DIR__ . '/../..' . '/src/Installer.php',
|
73 |
-
'DLM_Integrations_PostTypesOrder' => __DIR__ . '/../..' . '/src/Integrations/PostTypesOrder.php',
|
74 |
-
'DLM_Integrations_YoastSEO' => __DIR__ . '/../..' . '/src/Integrations/YoastSEO.php',
|
75 |
-
'DLM_LU_Ajax' => __DIR__ . '/../..' . '/src/LegacyUpgrader/Ajax.php',
|
76 |
-
'DLM_LU_Checker' => __DIR__ . '/../..' . '/src/LegacyUpgrader/Checker.php',
|
77 |
-
'DLM_LU_Content_Queue' => __DIR__ . '/../..' . '/src/LegacyUpgrader/ContentQueue.php',
|
78 |
-
'DLM_LU_Content_Upgrader' => __DIR__ . '/../..' . '/src/LegacyUpgrader/ContentUpgrader.php',
|
79 |
-
'DLM_LU_Download_Queue' => __DIR__ . '/../..' . '/src/LegacyUpgrader/DownloadQueue.php',
|
80 |
-
'DLM_LU_Download_Upgrader' => __DIR__ . '/../..' . '/src/LegacyUpgrader/DownloadUpgrader.php',
|
81 |
-
'DLM_LU_Message' => __DIR__ . '/../..' . '/src/LegacyUpgrader/Message.php',
|
82 |
-
'DLM_LU_Page' => __DIR__ . '/../..' . '/src/LegacyUpgrader/Page.php',
|
83 |
-
'DLM_Log_Export_CSV' => __DIR__ . '/../..' . '/src/Logs/LogExportCSV.php',
|
84 |
-
'DLM_Log_Filters' => __DIR__ . '/../..' . '/src/Logs/LogFilters.php',
|
85 |
-
'DLM_Log_Item' => __DIR__ . '/../..' . '/src/Logs/LogItem.php',
|
86 |
-
'DLM_Log_Item_Repository' => __DIR__ . '/../..' . '/src/Logs/LogItemRepository.php',
|
87 |
-
'DLM_Log_Page' => __DIR__ . '/../..' . '/src/Logs/LogPage.php',
|
88 |
-
'DLM_Logging' => __DIR__ . '/../..' . '/src/Logs/Logging.php',
|
89 |
-
'DLM_Logging_List_Table' => __DIR__ . '/../..' . '/src/Logs/LoggingListTable.php',
|
90 |
-
'DLM_Post_Type_Manager' => __DIR__ . '/../..' . '/src/PostTypeManager.php',
|
91 |
-
'DLM_Product' => __DIR__ . '/../..' . '/src/Product/Product.php',
|
92 |
-
'DLM_Product_Error_Handler' => __DIR__ . '/../..' . '/src/Product/ProductErrorHandler.php',
|
93 |
-
'DLM_Product_License' => __DIR__ . '/../..' . '/src/Product/ProductLicense.php',
|
94 |
-
'DLM_Product_Manager' => __DIR__ . '/../..' . '/src/Product/ProductManager.php',
|
95 |
-
'DLM_Reports_Ajax' => __DIR__ . '/../..' . '/src/Admin/Reports/Ajax.php',
|
96 |
-
'DLM_Reports_Chart' => __DIR__ . '/../..' . '/src/Admin/Reports/Chart.php',
|
97 |
-
'DLM_Reports_Page' => __DIR__ . '/../..' . '/src/Admin/Reports/Page.php',
|
98 |
-
'DLM_Review' => __DIR__ . '/../..' . '/includes/admin/class-dlm-review.php',
|
99 |
-
'DLM_Search' => __DIR__ . '/../..' . '/src/Search.php',
|
100 |
-
'DLM_Services' => __DIR__ . '/../..' . '/src/Services.php',
|
101 |
-
'DLM_Settings_Helper' => __DIR__ . '/../..' . '/src/Admin/Settings/SettingsHelper.php',
|
102 |
-
'DLM_Settings_Page' => __DIR__ . '/../..' . '/src/Admin/Settings/Page.php',
|
103 |
-
'DLM_Shortcodes' => __DIR__ . '/../..' . '/src/Shortcodes.php',
|
104 |
-
'DLM_Taxonomy_Manager' => __DIR__ . '/../..' . '/src/TaxonomyManager.php',
|
105 |
-
'DLM_Template_Handler' => __DIR__ . '/../..' . '/src/TemplateHandler.php',
|
106 |
-
'DLM_Transient_Manager' => __DIR__ . '/../..' . '/src/TransientManager.php',
|
107 |
-
'DLM_Uninstall' => __DIR__ . '/../..' . '/includes/admin/uninstall/class-dlm-uninstall.php',
|
108 |
-
'DLM_Upgrade_Manager' => __DIR__ . '/../..' . '/src/UpgradeManager.php',
|
109 |
-
'DLM_Upsells' => __DIR__ . '/../..' . '/includes/admin/class-dlm-upsells.php',
|
110 |
-
'DLM_Utils' => __DIR__ . '/../..' . '/src/Utils.php',
|
111 |
-
'DLM_Version_Manager' => __DIR__ . '/../..' . '/src/Version/VersionManager.php',
|
112 |
-
'DLM_Version_Repository' => __DIR__ . '/../..' . '/src/Version/VersionRepository.php',
|
113 |
-
'DLM_View_Manager' => __DIR__ . '/../..' . '/src/Admin/ViewManager.php',
|
114 |
-
'DLM_Widget_Downloads' => __DIR__ . '/../..' . '/src/Widgets/Downloads.php',
|
115 |
-
'DLM_Widget_Manager' => __DIR__ . '/../..' . '/src/Widgets/Manager.php',
|
116 |
-
'DLM_WordPress_Download_Repository' => __DIR__ . '/../..' . '/src/Download/WordPressDownloadRepository.php',
|
117 |
-
'DLM_WordPress_Log_Item_Repository' => __DIR__ . '/../..' . '/src/Logs/WordPressLogItemRepository.php',
|
118 |
-
'DLM_WordPress_Version_Repository' => __DIR__ . '/../..' . '/src/Version/WordPressVersionRepository.php',
|
119 |
-
'DateTimeImmutable' => __DIR__ . '/../..' . '/src/Polyfill/DateTimeImmutable/DateTimeImmutable.php',
|
120 |
-
'DateTimeInterface' => __DIR__ . '/../..' . '/src/Polyfill/DateTimeImmutable/DateTimeInterface.php',
|
121 |
-
'Download_Monitor_Usage_Tracker' => __DIR__ . '/../..' . '/includes/tracking/class-download-monitor-usage-tracker.php',
|
122 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Curl' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Curl.php',
|
123 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Encoder' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Encoder.php',
|
124 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Environment' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Environment.php',
|
125 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\HttpClient' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/HttpClient.php',
|
126 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\HttpException' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/HttpException.php',
|
127 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\HttpRequest' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/HttpRequest.php',
|
128 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\HttpResponse' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/HttpResponse.php',
|
129 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\IOException' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/IOException.php',
|
130 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Injector' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Injector.php',
|
131 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Serializer.php',
|
132 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\Form' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Serializer/Form.php',
|
133 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\FormPart' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Serializer/FormPart.php',
|
134 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\Json' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Serializer/Json.php',
|
135 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\Multipart' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Serializer/Multipart.php',
|
136 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\Text' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Serializer/Text.php',
|
137 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPal\\Api\\CarrierAccount' => __DIR__ . '/../..' . '/src/Dependencies/PayPal/Api/CarrierAccount.php',
|
138 |
-
'Never5\\DownloadMonitor\\Dependencies\\PayPal\\Api\\OpenIdUserinfo' => __DIR__ . '/../..' . '/src/Dependencies/PayPal/Api/OpenIdUserinfo.php',
|
139 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Container' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Container.php',
|
140 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Exception\\ExpectedInvokableException' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Exception/ExpectedInvokableException.php',
|
141 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Exception\\FrozenServiceException' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Exception/FrozenServiceException.php',
|
142 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Exception\\InvalidServiceIdentifierException' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Exception/InvalidServiceIdentifierException.php',
|
143 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Exception\\UnknownIdentifierException' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Exception/UnknownIdentifierException.php',
|
144 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Psr11\\Container' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Psr11/Container.php',
|
145 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Psr11\\ServiceLocator' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Psr11/ServiceLocator.php',
|
146 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\ServiceIterator' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/ServiceIterator.php',
|
147 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\ServiceProviderInterface' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/ServiceProviderInterface.php',
|
148 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Fixtures\\Invokable' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/Fixtures/Invokable.php',
|
149 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Fixtures\\NonInvokable' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/Fixtures/NonInvokable.php',
|
150 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Fixtures\\PimpleServiceProvider' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/Fixtures/PimpleServiceProvider.php',
|
151 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Fixtures\\Service' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/Fixtures/Service.php',
|
152 |
-
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\ServiceIteratorTest' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/ServiceIteratorTest.php',
|
153 |
-
'Never5\\DownloadMonitor\\Dependencies\\Psr\\Container\\ContainerExceptionInterface' => __DIR__ . '/../..' . '/src/Dependencies/Psr/Container/ContainerExceptionInterface.php',
|
154 |
-
'Never5\\DownloadMonitor\\Dependencies\\Psr\\Container\\ContainerInterface' => __DIR__ . '/../..' . '/src/Dependencies/Psr/Container/ContainerInterface.php',
|
155 |
-
'Never5\\DownloadMonitor\\Dependencies\\Psr\\Container\\NotFoundExceptionInterface' => __DIR__ . '/../..' . '/src/Dependencies/Psr/Container/NotFoundExceptionInterface.php',
|
156 |
-
'Never5\\DownloadMonitor\\Shop\\Access\\Manager' => __DIR__ . '/../..' . '/src/Shop/Access/Manager.php',
|
157 |
-
'Never5\\DownloadMonitor\\Shop\\Admin\\DownloadOption' => __DIR__ . '/../..' . '/src/Shop/Admin/DownloadOption.php',
|
158 |
-
'Never5\\DownloadMonitor\\Shop\\Admin\\Fields\\GatewayOverview' => __DIR__ . '/../..' . '/src/Shop/Admin/Fields/GatewayOverview.php',
|
159 |
-
'Never5\\DownloadMonitor\\Shop\\Admin\\OrderTable' => __DIR__ . '/../..' . '/src/Shop/Admin/OrderTable.php',
|
160 |
-
'Never5\\DownloadMonitor\\Shop\\Admin\\Pages\\Orders' => __DIR__ . '/../..' . '/src/Shop/Admin/Pages/Orders.php',
|
161 |
-
'Never5\\DownloadMonitor\\Shop\\Admin\\ProductTableColumns' => __DIR__ . '/../..' . '/src/Shop/Admin/ProductTableColumns.php',
|
162 |
-
'Never5\\DownloadMonitor\\Shop\\Admin\\ShopAdminHelper' => __DIR__ . '/../..' . '/src/Shop/Admin/ShopAdminHelper.php',
|
163 |
-
'Never5\\DownloadMonitor\\Shop\\Admin\\WritePanels' => __DIR__ . '/../..' . '/src/Shop/Admin/WritePanels.php',
|
164 |
-
'Never5\\DownloadMonitor\\Shop\\Ajax\\AdminChangeOrderStatus' => __DIR__ . '/../..' . '/src/Shop/Ajax/AdminChangeOrderStatus.php',
|
165 |
-
'Never5\\DownloadMonitor\\Shop\\Ajax\\Ajax' => __DIR__ . '/../..' . '/src/Shop/Ajax/Ajax.php',
|
166 |
-
'Never5\\DownloadMonitor\\Shop\\Ajax\\Manager' => __DIR__ . '/../..' . '/src/Shop/Ajax/Manager.php',
|
167 |
-
'Never5\\DownloadMonitor\\Shop\\Ajax\\PlaceOrder' => __DIR__ . '/../..' . '/src/Shop/Ajax/PlaceOrder.php',
|
168 |
-
'Never5\\DownloadMonitor\\Shop\\Cart\\Cart' => __DIR__ . '/../..' . '/src/Shop/Cart/Cart.php',
|
169 |
-
'Never5\\DownloadMonitor\\Shop\\Cart\\Coupon' => __DIR__ . '/../..' . '/src/Shop/Cart/Coupon.php',
|
170 |
-
'Never5\\DownloadMonitor\\Shop\\Cart\\Hooks' => __DIR__ . '/../..' . '/src/Shop/Cart/Hooks.php',
|
171 |
-
'Never5\\DownloadMonitor\\Shop\\Cart\\Item\\Factory' => __DIR__ . '/../..' . '/src/Shop/Cart/Item/Factory.php',
|
172 |
-
'Never5\\DownloadMonitor\\Shop\\Cart\\Item\\Item' => __DIR__ . '/../..' . '/src/Shop/Cart/Item/Item.php',
|
173 |
-
'Never5\\DownloadMonitor\\Shop\\Cart\\Manager' => __DIR__ . '/../..' . '/src/Shop/Cart/Manager.php',
|
174 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\Field' => __DIR__ . '/../..' . '/src/Shop/Checkout/Field.php',
|
175 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\Manager' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/Manager.php',
|
176 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Address' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Address.php',
|
177 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Amount' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Amount.php',
|
178 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\BaseAddress' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/BaseAddress.php',
|
179 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\CartBase' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/CartBase.php',
|
180 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Details' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Details.php',
|
181 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\FormatConverter' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/FormatConverter.php',
|
182 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Item' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Item.php',
|
183 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\ItemList' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/ItemList.php',
|
184 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\NumericValidator' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/NumericValidator.php',
|
185 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Payer' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Payer.php',
|
186 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\PayerInfo' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/PayerInfo.php',
|
187 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\RedirectUrls' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/RedirectUrls.php',
|
188 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Transaction' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Transaction.php',
|
189 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\TransactionBase' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/TransactionBase.php',
|
190 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\UrlValidator' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/UrlValidator.php',
|
191 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\CaptureOrder' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/CaptureOrder.php',
|
192 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\AccessToken' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/AccessToken.php',
|
193 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\AccessTokenRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/AccessTokenRequest.php',
|
194 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\AuthorizationInjector' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/AuthorizationInjector.php',
|
195 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\FPTIInstrumentationInjector' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/FPTIInstrumentationInjector.php',
|
196 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\GzipInjector' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/GzipInjector.php',
|
197 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\PayPalEnvironment' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/PayPalEnvironment.php',
|
198 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\PayPalHttpClient' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/PayPalHttpClient.php',
|
199 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\ProductionEnvironment' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/ProductionEnvironment.php',
|
200 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\RefreshTokenRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/RefreshTokenRequest.php',
|
201 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\SandboxEnvironment' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/SandboxEnvironment.php',
|
202 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\UserAgent' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/UserAgent.php',
|
203 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\Version' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/Version.php',
|
204 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\CreateOrder' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/CreateOrder.php',
|
205 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\ExecutePaymentListener' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/ExecutePaymentListener.php',
|
206 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersAuthorizeRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersAuthorizeRequest.php',
|
207 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersCaptureRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersCaptureRequest.php',
|
208 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersCreateRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersCreateRequest.php',
|
209 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersGetRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersGetRequest.php',
|
210 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersPatchRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersPatchRequest.php',
|
211 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersValidateRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersValidateRequest.php',
|
212 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\PayPalGateway' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/PayPalGateway.php',
|
213 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\AuthorizationsCaptureRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/AuthorizationsCaptureRequest.php',
|
214 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\AuthorizationsGetRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/AuthorizationsGetRequest.php',
|
215 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\AuthorizationsReauthorizeRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/AuthorizationsReauthorizeRequest.php',
|
216 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\AuthorizationsVoidRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/AuthorizationsVoidRequest.php',
|
217 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\CapturesGetRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/CapturesGetRequest.php',
|
218 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\CapturesRefundRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/CapturesRefundRequest.php',
|
219 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\RefundsGetRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/RefundsGetRequest.php',
|
220 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PaymentGateway' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PaymentGateway.php',
|
221 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\Result' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/Result.php',
|
222 |
-
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\Test\\TestGateway' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/Test/TestGateway.php',
|
223 |
-
'Never5\\DownloadMonitor\\Shop\\Email\\Handler' => __DIR__ . '/../..' . '/src/Shop/Email/Handler.php',
|
224 |
-
'Never5\\DownloadMonitor\\Shop\\Email\\Message' => __DIR__ . '/../..' . '/src/Shop/Email/Message.php',
|
225 |
-
'Never5\\DownloadMonitor\\Shop\\Email\\VarParser' => __DIR__ . '/../..' . '/src/Shop/Email/VarParser.php',
|
226 |
-
'Never5\\DownloadMonitor\\Shop\\Helper\\Country' => __DIR__ . '/../..' . '/src/Shop/Helper/Country.php',
|
227 |
-
'Never5\\DownloadMonitor\\Shop\\Helper\\Currency' => __DIR__ . '/../..' . '/src/Shop/Helper/Currency.php',
|
228 |
-
'Never5\\DownloadMonitor\\Shop\\Helper\\Format' => __DIR__ . '/../..' . '/src/Shop/Helper/Format.php',
|
229 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Factory' => __DIR__ . '/../..' . '/src/Shop/Order/Factory.php',
|
230 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Manager' => __DIR__ . '/../..' . '/src/Shop/Order/Manager.php',
|
231 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Order' => __DIR__ . '/../..' . '/src/Shop/Order/Order.php',
|
232 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\OrderCoupon' => __DIR__ . '/../..' . '/src/Shop/Order/OrderCoupon.php',
|
233 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\OrderCustomer' => __DIR__ . '/../..' . '/src/Shop/Order/OrderCustomer.php',
|
234 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\OrderItem' => __DIR__ . '/../..' . '/src/Shop/Order/OrderItem.php',
|
235 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Repository' => __DIR__ . '/../..' . '/src/Shop/Order/Repository.php',
|
236 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Status\\Factory' => __DIR__ . '/../..' . '/src/Shop/Order/Status/Factory.php',
|
237 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Status\\Manager' => __DIR__ . '/../..' . '/src/Shop/Order/Status/Manager.php',
|
238 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Status\\OrderStatus' => __DIR__ . '/../..' . '/src/Shop/Order/Status/OrderStatus.php',
|
239 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Transaction\\Factory' => __DIR__ . '/../..' . '/src/Shop/Order/Transaction/Factory.php',
|
240 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Transaction\\OrderTransaction' => __DIR__ . '/../..' . '/src/Shop/Order/Transaction/OrderTransaction.php',
|
241 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\Transaction\\OrderTransactionStatus' => __DIR__ . '/../..' . '/src/Shop/Order/Transaction/OrderTransactionStatus.php',
|
242 |
-
'Never5\\DownloadMonitor\\Shop\\Order\\WordPressRepository' => __DIR__ . '/../..' . '/src/Shop/Order/WordPressRepository.php',
|
243 |
-
'Never5\\DownloadMonitor\\Shop\\Product\\Factory' => __DIR__ . '/../..' . '/src/Shop/Product/Factory.php',
|
244 |
-
'Never5\\DownloadMonitor\\Shop\\Product\\Product' => __DIR__ . '/../..' . '/src/Shop/Product/Product.php',
|
245 |
-
'Never5\\DownloadMonitor\\Shop\\Product\\Repository' => __DIR__ . '/../..' . '/src/Shop/Product/Repository.php',
|
246 |
-
'Never5\\DownloadMonitor\\Shop\\Product\\WordPressRepository' => __DIR__ . '/../..' . '/src/Shop/Product/WordPressRepository.php',
|
247 |
-
'Never5\\DownloadMonitor\\Shop\\Services\\ServiceProvider' => __DIR__ . '/../..' . '/src/Shop/Services/ServiceProvider.php',
|
248 |
-
'Never5\\DownloadMonitor\\Shop\\Services\\Services' => __DIR__ . '/../..' . '/src/Shop/Services/Services.php',
|
249 |
-
'Never5\\DownloadMonitor\\Shop\\Session\\Cookie' => __DIR__ . '/../..' . '/src/Shop/Session/Cookie.php',
|
250 |
-
'Never5\\DownloadMonitor\\Shop\\Session\\Factory' => __DIR__ . '/../..' . '/src/Shop/Session/Factory.php',
|
251 |
-
'Never5\\DownloadMonitor\\Shop\\Session\\Item\\Factory' => __DIR__ . '/../..' . '/src/Shop/Session/Item/Factory.php',
|
252 |
-
'Never5\\DownloadMonitor\\Shop\\Session\\Item\\Item' => __DIR__ . '/../..' . '/src/Shop/Session/Item/Item.php',
|
253 |
-
'Never5\\DownloadMonitor\\Shop\\Session\\Manager' => __DIR__ . '/../..' . '/src/Shop/Session/Manager.php',
|
254 |
-
'Never5\\DownloadMonitor\\Shop\\Session\\Repository' => __DIR__ . '/../..' . '/src/Shop/Session/Repository.php',
|
255 |
-
'Never5\\DownloadMonitor\\Shop\\Session\\Session' => __DIR__ . '/../..' . '/src/Shop/Session/Session.php',
|
256 |
-
'Never5\\DownloadMonitor\\Shop\\Session\\WordPressRepository' => __DIR__ . '/../..' . '/src/Shop/Session/WordPressRepository.php',
|
257 |
-
'Never5\\DownloadMonitor\\Shop\\Shortcode\\Buy' => __DIR__ . '/../..' . '/src/Shop/Shortcode/Buy.php',
|
258 |
-
'Never5\\DownloadMonitor\\Shop\\Shortcode\\Cart' => __DIR__ . '/../..' . '/src/Shop/Shortcode/Cart.php',
|
259 |
-
'Never5\\DownloadMonitor\\Shop\\Shortcode\\Checkout' => __DIR__ . '/../..' . '/src/Shop/Shortcode/Checkout.php',
|
260 |
-
'Never5\\DownloadMonitor\\Shop\\Tax\\TaxClassManager' => __DIR__ . '/../..' . '/src/Shop/Tax/TaxClassManager.php',
|
261 |
-
'Never5\\DownloadMonitor\\Shop\\Tax\\TaxRate' => __DIR__ . '/../..' . '/src/Shop/Tax/TaxRate.php',
|
262 |
-
'Never5\\DownloadMonitor\\Shop\\Util\\Assets' => __DIR__ . '/../..' . '/src/Shop/Util/Assets.php',
|
263 |
-
'Never5\\DownloadMonitor\\Shop\\Util\\Page' => __DIR__ . '/../..' . '/src/Shop/Util/Page.php',
|
264 |
-
'Never5\\DownloadMonitor\\Shop\\Util\\PostType' => __DIR__ . '/../..' . '/src/Shop/Util/PostType.php',
|
265 |
-
'Never5\\DownloadMonitor\\Shop\\Util\\Redirect' => __DIR__ . '/../..' . '/src/Shop/Util/Redirect.php',
|
266 |
-
'Never5\\DownloadMonitor\\Shop\\Util\\TemplateInjector' => __DIR__ . '/../..' . '/src/Shop/Util/TemplateInjector.php',
|
267 |
-
'Never5\\DownloadMonitor\\Util\\ExtensionLoader' => __DIR__ . '/../..' . '/src/Util/ExtensionLoader.php',
|
268 |
-
'Never5\\DownloadMonitor\\Util\\Onboarding' => __DIR__ . '/../..' . '/src/Util/Onboarding.php',
|
269 |
-
'Never5\\DownloadMonitor\\Util\\PageCreator' => __DIR__ . '/../..' . '/src/Util/PageCreator.php',
|
270 |
-
'WPChill\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\PimpleServiceProviderInterfaceTest' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/PimpleServiceProviderInterfaceTest.php',
|
271 |
-
'WPChill\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\PimpleTest' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/PimpleTest.php',
|
272 |
-
'WPChill\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Psr11\\ContainerTest' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/Psr11/ContainerTest.php',
|
273 |
-
'WPChill\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Psr11\\ServiceLocatorTest' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/Psr11/ServiceLocatorTest.php',
|
274 |
-
'WP_DLM' => __DIR__ . '/../..' . '/src/DLM.php',
|
275 |
-
);
|
276 |
-
|
277 |
-
public static function getInitializer(ClassLoader $loader)
|
278 |
-
{
|
279 |
-
return \Closure::bind(function () use ($loader) {
|
280 |
-
$loader->prefixLengthsPsr4 = ComposerStaticInit80ce4473100edd20fd6c17775a76ce9a::$prefixLengthsPsr4;
|
281 |
-
$loader->prefixDirsPsr4 = ComposerStaticInit80ce4473100edd20fd6c17775a76ce9a::$prefixDirsPsr4;
|
282 |
-
$loader->classMap = ComposerStaticInit80ce4473100edd20fd6c17775a76ce9a::$classMap;
|
283 |
-
|
284 |
-
}, null, ClassLoader::class);
|
285 |
-
}
|
286 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// autoload_static.php @generated by Composer
|
4 |
+
|
5 |
+
namespace Composer\Autoload;
|
6 |
+
|
7 |
+
class ComposerStaticInit80ce4473100edd20fd6c17775a76ce9a
|
8 |
+
{
|
9 |
+
public static $prefixLengthsPsr4 = array (
|
10 |
+
'N' =>
|
11 |
+
array (
|
12 |
+
'Never5\\DownloadMonitor\\' => 23,
|
13 |
+
),
|
14 |
+
);
|
15 |
+
|
16 |
+
public static $prefixDirsPsr4 = array (
|
17 |
+
'Never5\\DownloadMonitor\\' =>
|
18 |
+
array (
|
19 |
+
0 => __DIR__ . '/../..' . '/src',
|
20 |
+
),
|
21 |
+
);
|
22 |
+
|
23 |
+
public static $classMap = array (
|
24 |
+
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
|
25 |
+
'DLM_Admin' => __DIR__ . '/../..' . '/src/Admin/Admin.php',
|
26 |
+
'DLM_Admin_Dashboard' => __DIR__ . '/../..' . '/src/Admin/Dashboard.php',
|
27 |
+
'DLM_Admin_Extensions' => __DIR__ . '/../..' . '/src/Admin/Extensions.php',
|
28 |
+
'DLM_Admin_Fields_Field' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/Field.php',
|
29 |
+
'DLM_Admin_Fields_Field_ActionButton' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/ActionButton.php',
|
30 |
+
'DLM_Admin_Fields_Field_Checkbox' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/Checkbox.php',
|
31 |
+
'DLM_Admin_Fields_Field_Desc' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/Desc.php',
|
32 |
+
'DLM_Admin_Fields_Field_Factory' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/FieldFactory.php',
|
33 |
+
'DLM_Admin_Fields_Field_HtaccessStatus' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/HtaccessStatus.php',
|
34 |
+
'DLM_Admin_Fields_Field_Lazy_Select' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/LazySelect.php',
|
35 |
+
'DLM_Admin_Fields_Field_Password' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/Password.php',
|
36 |
+
'DLM_Admin_Fields_Field_Select' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/Select.php',
|
37 |
+
'DLM_Admin_Fields_Field_Text' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/Text.php',
|
38 |
+
'DLM_Admin_Fields_Field_Textarea' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/Textarea.php',
|
39 |
+
'DLM_Admin_Fields_Field_Title' => __DIR__ . '/../..' . '/src/Admin/Settings/Fields/Title.php',
|
40 |
+
'DLM_Admin_Helper' => __DIR__ . '/../..' . '/src/Admin/class-dlm-admin-helper.php',
|
41 |
+
'DLM_Admin_Media_Browser' => __DIR__ . '/../..' . '/src/Admin/MediaBrowser.php',
|
42 |
+
'DLM_Admin_Media_Insert' => __DIR__ . '/../..' . '/src/Admin/MediaInsert.php',
|
43 |
+
'DLM_Admin_OptionsUpsells' => __DIR__ . '/../..' . '/src/Admin/OptionsUpsells.php',
|
44 |
+
'DLM_Admin_Scripts' => __DIR__ . '/../..' . '/src/Admin/AdminScripts.php',
|
45 |
+
'DLM_Admin_Settings' => __DIR__ . '/../..' . '/src/Admin/Settings/Settings.php',
|
46 |
+
'DLM_Admin_Writepanels' => __DIR__ . '/../..' . '/src/Admin/WritePanels.php',
|
47 |
+
'DLM_Ajax' => __DIR__ . '/../..' . '/src/Ajax/Ajax.php',
|
48 |
+
'DLM_Ajax_CreatePage' => __DIR__ . '/../..' . '/src/Ajax/CreatePage.php',
|
49 |
+
'DLM_Ajax_GetDownloads' => __DIR__ . '/../..' . '/src/Ajax/GetDownloads.php',
|
50 |
+
'DLM_Ajax_GetVersions' => __DIR__ . '/../..' . '/src/Ajax/GetVersions.php',
|
51 |
+
'DLM_Ajax_Handler' => __DIR__ . '/../..' . '/src/AjaxHandler.php',
|
52 |
+
'DLM_Ajax_Manager' => __DIR__ . '/../..' . '/src/Ajax/Manager.php',
|
53 |
+
'DLM_Category_Walker' => __DIR__ . '/../..' . '/src/Admin/CategoryWalker.php',
|
54 |
+
'DLM_Constants' => __DIR__ . '/../..' . '/src/Constants.php',
|
55 |
+
'DLM_Cookie_Manager' => __DIR__ . '/../..' . '/src/CookieManager.php',
|
56 |
+
'DLM_Custom_Actions' => __DIR__ . '/../..' . '/src/Admin/CustomActions.php',
|
57 |
+
'DLM_Custom_Columns' => __DIR__ . '/../..' . '/src/Admin/CustomColumns.php',
|
58 |
+
'DLM_Custom_Labels' => __DIR__ . '/../..' . '/src/Admin/CustomLabels.php',
|
59 |
+
'DLM_Debug_Logger' => __DIR__ . '/../..' . '/src/DebugLogger.php',
|
60 |
+
'DLM_Download' => __DIR__ . '/../..' . '/src/Download/Download.php',
|
61 |
+
'DLM_DownloadPreview_Config' => __DIR__ . '/../..' . '/src/DownloadPreview/Config.php',
|
62 |
+
'DLM_DownloadPreview_Preview' => __DIR__ . '/../..' . '/src/DownloadPreview/Preview.php',
|
63 |
+
'DLM_Download_Duplicator_AAM' => __DIR__ . '/../..' . '/src/Admin/Duplicate/DownloadDuplicatorAAM.php',
|
64 |
+
'DLM_Download_Factory' => __DIR__ . '/../..' . '/src/Download/DownloadFactory.php',
|
65 |
+
'DLM_Download_Handler' => __DIR__ . '/../..' . '/src/DownloadHandler.php',
|
66 |
+
'DLM_Download_No_Access_Page_Endpoint' => __DIR__ . '/../..' . '/src/DownloadNoAccessPageEndpoint.php',
|
67 |
+
'DLM_Download_Repository' => __DIR__ . '/../..' . '/src/Download/DownloadRepository.php',
|
68 |
+
'DLM_Download_Version' => __DIR__ . '/../..' . '/src/Version/Version.php',
|
69 |
+
'DLM_File_Manager' => __DIR__ . '/../..' . '/src/FileManager.php',
|
70 |
+
'DLM_Gutenberg' => __DIR__ . '/../..' . '/src/Gutenberg.php',
|
71 |
+
'DLM_Hasher' => __DIR__ . '/../..' . '/src/Hasher.php',
|
72 |
+
'DLM_Installer' => __DIR__ . '/../..' . '/src/Installer.php',
|
73 |
+
'DLM_Integrations_PostTypesOrder' => __DIR__ . '/../..' . '/src/Integrations/PostTypesOrder.php',
|
74 |
+
'DLM_Integrations_YoastSEO' => __DIR__ . '/../..' . '/src/Integrations/YoastSEO.php',
|
75 |
+
'DLM_LU_Ajax' => __DIR__ . '/../..' . '/src/LegacyUpgrader/Ajax.php',
|
76 |
+
'DLM_LU_Checker' => __DIR__ . '/../..' . '/src/LegacyUpgrader/Checker.php',
|
77 |
+
'DLM_LU_Content_Queue' => __DIR__ . '/../..' . '/src/LegacyUpgrader/ContentQueue.php',
|
78 |
+
'DLM_LU_Content_Upgrader' => __DIR__ . '/../..' . '/src/LegacyUpgrader/ContentUpgrader.php',
|
79 |
+
'DLM_LU_Download_Queue' => __DIR__ . '/../..' . '/src/LegacyUpgrader/DownloadQueue.php',
|
80 |
+
'DLM_LU_Download_Upgrader' => __DIR__ . '/../..' . '/src/LegacyUpgrader/DownloadUpgrader.php',
|
81 |
+
'DLM_LU_Message' => __DIR__ . '/../..' . '/src/LegacyUpgrader/Message.php',
|
82 |
+
'DLM_LU_Page' => __DIR__ . '/../..' . '/src/LegacyUpgrader/Page.php',
|
83 |
+
'DLM_Log_Export_CSV' => __DIR__ . '/../..' . '/src/Logs/LogExportCSV.php',
|
84 |
+
'DLM_Log_Filters' => __DIR__ . '/../..' . '/src/Logs/LogFilters.php',
|
85 |
+
'DLM_Log_Item' => __DIR__ . '/../..' . '/src/Logs/LogItem.php',
|
86 |
+
'DLM_Log_Item_Repository' => __DIR__ . '/../..' . '/src/Logs/LogItemRepository.php',
|
87 |
+
'DLM_Log_Page' => __DIR__ . '/../..' . '/src/Logs/LogPage.php',
|
88 |
+
'DLM_Logging' => __DIR__ . '/../..' . '/src/Logs/Logging.php',
|
89 |
+
'DLM_Logging_List_Table' => __DIR__ . '/../..' . '/src/Logs/LoggingListTable.php',
|
90 |
+
'DLM_Post_Type_Manager' => __DIR__ . '/../..' . '/src/PostTypeManager.php',
|
91 |
+
'DLM_Product' => __DIR__ . '/../..' . '/src/Product/Product.php',
|
92 |
+
'DLM_Product_Error_Handler' => __DIR__ . '/../..' . '/src/Product/ProductErrorHandler.php',
|
93 |
+
'DLM_Product_License' => __DIR__ . '/../..' . '/src/Product/ProductLicense.php',
|
94 |
+
'DLM_Product_Manager' => __DIR__ . '/../..' . '/src/Product/ProductManager.php',
|
95 |
+
'DLM_Reports_Ajax' => __DIR__ . '/../..' . '/src/Admin/Reports/Ajax.php',
|
96 |
+
'DLM_Reports_Chart' => __DIR__ . '/../..' . '/src/Admin/Reports/Chart.php',
|
97 |
+
'DLM_Reports_Page' => __DIR__ . '/../..' . '/src/Admin/Reports/Page.php',
|
98 |
+
'DLM_Review' => __DIR__ . '/../..' . '/includes/admin/class-dlm-review.php',
|
99 |
+
'DLM_Search' => __DIR__ . '/../..' . '/src/Search.php',
|
100 |
+
'DLM_Services' => __DIR__ . '/../..' . '/src/Services.php',
|
101 |
+
'DLM_Settings_Helper' => __DIR__ . '/../..' . '/src/Admin/Settings/SettingsHelper.php',
|
102 |
+
'DLM_Settings_Page' => __DIR__ . '/../..' . '/src/Admin/Settings/Page.php',
|
103 |
+
'DLM_Shortcodes' => __DIR__ . '/../..' . '/src/Shortcodes.php',
|
104 |
+
'DLM_Taxonomy_Manager' => __DIR__ . '/../..' . '/src/TaxonomyManager.php',
|
105 |
+
'DLM_Template_Handler' => __DIR__ . '/../..' . '/src/TemplateHandler.php',
|
106 |
+
'DLM_Transient_Manager' => __DIR__ . '/../..' . '/src/TransientManager.php',
|
107 |
+
'DLM_Uninstall' => __DIR__ . '/../..' . '/includes/admin/uninstall/class-dlm-uninstall.php',
|
108 |
+
'DLM_Upgrade_Manager' => __DIR__ . '/../..' . '/src/UpgradeManager.php',
|
109 |
+
'DLM_Upsells' => __DIR__ . '/../..' . '/includes/admin/class-dlm-upsells.php',
|
110 |
+
'DLM_Utils' => __DIR__ . '/../..' . '/src/Utils.php',
|
111 |
+
'DLM_Version_Manager' => __DIR__ . '/../..' . '/src/Version/VersionManager.php',
|
112 |
+
'DLM_Version_Repository' => __DIR__ . '/../..' . '/src/Version/VersionRepository.php',
|
113 |
+
'DLM_View_Manager' => __DIR__ . '/../..' . '/src/Admin/ViewManager.php',
|
114 |
+
'DLM_Widget_Downloads' => __DIR__ . '/../..' . '/src/Widgets/Downloads.php',
|
115 |
+
'DLM_Widget_Manager' => __DIR__ . '/../..' . '/src/Widgets/Manager.php',
|
116 |
+
'DLM_WordPress_Download_Repository' => __DIR__ . '/../..' . '/src/Download/WordPressDownloadRepository.php',
|
117 |
+
'DLM_WordPress_Log_Item_Repository' => __DIR__ . '/../..' . '/src/Logs/WordPressLogItemRepository.php',
|
118 |
+
'DLM_WordPress_Version_Repository' => __DIR__ . '/../..' . '/src/Version/WordPressVersionRepository.php',
|
119 |
+
'DateTimeImmutable' => __DIR__ . '/../..' . '/src/Polyfill/DateTimeImmutable/DateTimeImmutable.php',
|
120 |
+
'DateTimeInterface' => __DIR__ . '/../..' . '/src/Polyfill/DateTimeImmutable/DateTimeInterface.php',
|
121 |
+
'Download_Monitor_Usage_Tracker' => __DIR__ . '/../..' . '/includes/tracking/class-download-monitor-usage-tracker.php',
|
122 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Curl' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Curl.php',
|
123 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Encoder' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Encoder.php',
|
124 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Environment' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Environment.php',
|
125 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\HttpClient' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/HttpClient.php',
|
126 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\HttpException' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/HttpException.php',
|
127 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\HttpRequest' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/HttpRequest.php',
|
128 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\HttpResponse' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/HttpResponse.php',
|
129 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\IOException' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/IOException.php',
|
130 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Injector' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Injector.php',
|
131 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Serializer.php',
|
132 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\Form' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Serializer/Form.php',
|
133 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\FormPart' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Serializer/FormPart.php',
|
134 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\Json' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Serializer/Json.php',
|
135 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\Multipart' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Serializer/Multipart.php',
|
136 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPalHttp\\Serializer\\Text' => __DIR__ . '/../..' . '/src/Dependencies/PayPalHttp/Serializer/Text.php',
|
137 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPal\\Api\\CarrierAccount' => __DIR__ . '/../..' . '/src/Dependencies/PayPal/Api/CarrierAccount.php',
|
138 |
+
'Never5\\DownloadMonitor\\Dependencies\\PayPal\\Api\\OpenIdUserinfo' => __DIR__ . '/../..' . '/src/Dependencies/PayPal/Api/OpenIdUserinfo.php',
|
139 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Container' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Container.php',
|
140 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Exception\\ExpectedInvokableException' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Exception/ExpectedInvokableException.php',
|
141 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Exception\\FrozenServiceException' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Exception/FrozenServiceException.php',
|
142 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Exception\\InvalidServiceIdentifierException' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Exception/InvalidServiceIdentifierException.php',
|
143 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Exception\\UnknownIdentifierException' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Exception/UnknownIdentifierException.php',
|
144 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Psr11\\Container' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Psr11/Container.php',
|
145 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Psr11\\ServiceLocator' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Psr11/ServiceLocator.php',
|
146 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\ServiceIterator' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/ServiceIterator.php',
|
147 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\ServiceProviderInterface' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/ServiceProviderInterface.php',
|
148 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Fixtures\\Invokable' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/Fixtures/Invokable.php',
|
149 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Fixtures\\NonInvokable' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/Fixtures/NonInvokable.php',
|
150 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Fixtures\\PimpleServiceProvider' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/Fixtures/PimpleServiceProvider.php',
|
151 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Fixtures\\Service' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/Fixtures/Service.php',
|
152 |
+
'Never5\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\ServiceIteratorTest' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/ServiceIteratorTest.php',
|
153 |
+
'Never5\\DownloadMonitor\\Dependencies\\Psr\\Container\\ContainerExceptionInterface' => __DIR__ . '/../..' . '/src/Dependencies/Psr/Container/ContainerExceptionInterface.php',
|
154 |
+
'Never5\\DownloadMonitor\\Dependencies\\Psr\\Container\\ContainerInterface' => __DIR__ . '/../..' . '/src/Dependencies/Psr/Container/ContainerInterface.php',
|
155 |
+
'Never5\\DownloadMonitor\\Dependencies\\Psr\\Container\\NotFoundExceptionInterface' => __DIR__ . '/../..' . '/src/Dependencies/Psr/Container/NotFoundExceptionInterface.php',
|
156 |
+
'Never5\\DownloadMonitor\\Shop\\Access\\Manager' => __DIR__ . '/../..' . '/src/Shop/Access/Manager.php',
|
157 |
+
'Never5\\DownloadMonitor\\Shop\\Admin\\DownloadOption' => __DIR__ . '/../..' . '/src/Shop/Admin/DownloadOption.php',
|
158 |
+
'Never5\\DownloadMonitor\\Shop\\Admin\\Fields\\GatewayOverview' => __DIR__ . '/../..' . '/src/Shop/Admin/Fields/GatewayOverview.php',
|
159 |
+
'Never5\\DownloadMonitor\\Shop\\Admin\\OrderTable' => __DIR__ . '/../..' . '/src/Shop/Admin/OrderTable.php',
|
160 |
+
'Never5\\DownloadMonitor\\Shop\\Admin\\Pages\\Orders' => __DIR__ . '/../..' . '/src/Shop/Admin/Pages/Orders.php',
|
161 |
+
'Never5\\DownloadMonitor\\Shop\\Admin\\ProductTableColumns' => __DIR__ . '/../..' . '/src/Shop/Admin/ProductTableColumns.php',
|
162 |
+
'Never5\\DownloadMonitor\\Shop\\Admin\\ShopAdminHelper' => __DIR__ . '/../..' . '/src/Shop/Admin/ShopAdminHelper.php',
|
163 |
+
'Never5\\DownloadMonitor\\Shop\\Admin\\WritePanels' => __DIR__ . '/../..' . '/src/Shop/Admin/WritePanels.php',
|
164 |
+
'Never5\\DownloadMonitor\\Shop\\Ajax\\AdminChangeOrderStatus' => __DIR__ . '/../..' . '/src/Shop/Ajax/AdminChangeOrderStatus.php',
|
165 |
+
'Never5\\DownloadMonitor\\Shop\\Ajax\\Ajax' => __DIR__ . '/../..' . '/src/Shop/Ajax/Ajax.php',
|
166 |
+
'Never5\\DownloadMonitor\\Shop\\Ajax\\Manager' => __DIR__ . '/../..' . '/src/Shop/Ajax/Manager.php',
|
167 |
+
'Never5\\DownloadMonitor\\Shop\\Ajax\\PlaceOrder' => __DIR__ . '/../..' . '/src/Shop/Ajax/PlaceOrder.php',
|
168 |
+
'Never5\\DownloadMonitor\\Shop\\Cart\\Cart' => __DIR__ . '/../..' . '/src/Shop/Cart/Cart.php',
|
169 |
+
'Never5\\DownloadMonitor\\Shop\\Cart\\Coupon' => __DIR__ . '/../..' . '/src/Shop/Cart/Coupon.php',
|
170 |
+
'Never5\\DownloadMonitor\\Shop\\Cart\\Hooks' => __DIR__ . '/../..' . '/src/Shop/Cart/Hooks.php',
|
171 |
+
'Never5\\DownloadMonitor\\Shop\\Cart\\Item\\Factory' => __DIR__ . '/../..' . '/src/Shop/Cart/Item/Factory.php',
|
172 |
+
'Never5\\DownloadMonitor\\Shop\\Cart\\Item\\Item' => __DIR__ . '/../..' . '/src/Shop/Cart/Item/Item.php',
|
173 |
+
'Never5\\DownloadMonitor\\Shop\\Cart\\Manager' => __DIR__ . '/../..' . '/src/Shop/Cart/Manager.php',
|
174 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\Field' => __DIR__ . '/../..' . '/src/Shop/Checkout/Field.php',
|
175 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\Manager' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/Manager.php',
|
176 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Address' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Address.php',
|
177 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Amount' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Amount.php',
|
178 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\BaseAddress' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/BaseAddress.php',
|
179 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\CartBase' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/CartBase.php',
|
180 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Details' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Details.php',
|
181 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\FormatConverter' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/FormatConverter.php',
|
182 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Item' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Item.php',
|
183 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\ItemList' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/ItemList.php',
|
184 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\NumericValidator' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/NumericValidator.php',
|
185 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Payer' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Payer.php',
|
186 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\PayerInfo' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/PayerInfo.php',
|
187 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\RedirectUrls' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/RedirectUrls.php',
|
188 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\Transaction' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/Transaction.php',
|
189 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\TransactionBase' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/TransactionBase.php',
|
190 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Api\\UrlValidator' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Api/UrlValidator.php',
|
191 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\CaptureOrder' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/CaptureOrder.php',
|
192 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\AccessToken' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/AccessToken.php',
|
193 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\AccessTokenRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/AccessTokenRequest.php',
|
194 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\AuthorizationInjector' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/AuthorizationInjector.php',
|
195 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\FPTIInstrumentationInjector' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/FPTIInstrumentationInjector.php',
|
196 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\GzipInjector' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/GzipInjector.php',
|
197 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\PayPalEnvironment' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/PayPalEnvironment.php',
|
198 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\PayPalHttpClient' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/PayPalHttpClient.php',
|
199 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\ProductionEnvironment' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/ProductionEnvironment.php',
|
200 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\RefreshTokenRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/RefreshTokenRequest.php',
|
201 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\SandboxEnvironment' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/SandboxEnvironment.php',
|
202 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\UserAgent' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/UserAgent.php',
|
203 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Core\\Version' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Core/Version.php',
|
204 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\CreateOrder' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/CreateOrder.php',
|
205 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\ExecutePaymentListener' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/ExecutePaymentListener.php',
|
206 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersAuthorizeRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersAuthorizeRequest.php',
|
207 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersCaptureRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersCaptureRequest.php',
|
208 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersCreateRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersCreateRequest.php',
|
209 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersGetRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersGetRequest.php',
|
210 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersPatchRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersPatchRequest.php',
|
211 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Orders\\OrdersValidateRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Orders/OrdersValidateRequest.php',
|
212 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\PayPalGateway' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/PayPalGateway.php',
|
213 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\AuthorizationsCaptureRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/AuthorizationsCaptureRequest.php',
|
214 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\AuthorizationsGetRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/AuthorizationsGetRequest.php',
|
215 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\AuthorizationsReauthorizeRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/AuthorizationsReauthorizeRequest.php',
|
216 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\AuthorizationsVoidRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/AuthorizationsVoidRequest.php',
|
217 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\CapturesGetRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/CapturesGetRequest.php',
|
218 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\CapturesRefundRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/CapturesRefundRequest.php',
|
219 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PayPal\\Payments\\RefundsGetRequest' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PayPal/Payments/RefundsGetRequest.php',
|
220 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\PaymentGateway' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/PaymentGateway.php',
|
221 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\Result' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/Result.php',
|
222 |
+
'Never5\\DownloadMonitor\\Shop\\Checkout\\PaymentGateway\\Test\\TestGateway' => __DIR__ . '/../..' . '/src/Shop/Checkout/PaymentGateway/Test/TestGateway.php',
|
223 |
+
'Never5\\DownloadMonitor\\Shop\\Email\\Handler' => __DIR__ . '/../..' . '/src/Shop/Email/Handler.php',
|
224 |
+
'Never5\\DownloadMonitor\\Shop\\Email\\Message' => __DIR__ . '/../..' . '/src/Shop/Email/Message.php',
|
225 |
+
'Never5\\DownloadMonitor\\Shop\\Email\\VarParser' => __DIR__ . '/../..' . '/src/Shop/Email/VarParser.php',
|
226 |
+
'Never5\\DownloadMonitor\\Shop\\Helper\\Country' => __DIR__ . '/../..' . '/src/Shop/Helper/Country.php',
|
227 |
+
'Never5\\DownloadMonitor\\Shop\\Helper\\Currency' => __DIR__ . '/../..' . '/src/Shop/Helper/Currency.php',
|
228 |
+
'Never5\\DownloadMonitor\\Shop\\Helper\\Format' => __DIR__ . '/../..' . '/src/Shop/Helper/Format.php',
|
229 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Factory' => __DIR__ . '/../..' . '/src/Shop/Order/Factory.php',
|
230 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Manager' => __DIR__ . '/../..' . '/src/Shop/Order/Manager.php',
|
231 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Order' => __DIR__ . '/../..' . '/src/Shop/Order/Order.php',
|
232 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\OrderCoupon' => __DIR__ . '/../..' . '/src/Shop/Order/OrderCoupon.php',
|
233 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\OrderCustomer' => __DIR__ . '/../..' . '/src/Shop/Order/OrderCustomer.php',
|
234 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\OrderItem' => __DIR__ . '/../..' . '/src/Shop/Order/OrderItem.php',
|
235 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Repository' => __DIR__ . '/../..' . '/src/Shop/Order/Repository.php',
|
236 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Status\\Factory' => __DIR__ . '/../..' . '/src/Shop/Order/Status/Factory.php',
|
237 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Status\\Manager' => __DIR__ . '/../..' . '/src/Shop/Order/Status/Manager.php',
|
238 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Status\\OrderStatus' => __DIR__ . '/../..' . '/src/Shop/Order/Status/OrderStatus.php',
|
239 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Transaction\\Factory' => __DIR__ . '/../..' . '/src/Shop/Order/Transaction/Factory.php',
|
240 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Transaction\\OrderTransaction' => __DIR__ . '/../..' . '/src/Shop/Order/Transaction/OrderTransaction.php',
|
241 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\Transaction\\OrderTransactionStatus' => __DIR__ . '/../..' . '/src/Shop/Order/Transaction/OrderTransactionStatus.php',
|
242 |
+
'Never5\\DownloadMonitor\\Shop\\Order\\WordPressRepository' => __DIR__ . '/../..' . '/src/Shop/Order/WordPressRepository.php',
|
243 |
+
'Never5\\DownloadMonitor\\Shop\\Product\\Factory' => __DIR__ . '/../..' . '/src/Shop/Product/Factory.php',
|
244 |
+
'Never5\\DownloadMonitor\\Shop\\Product\\Product' => __DIR__ . '/../..' . '/src/Shop/Product/Product.php',
|
245 |
+
'Never5\\DownloadMonitor\\Shop\\Product\\Repository' => __DIR__ . '/../..' . '/src/Shop/Product/Repository.php',
|
246 |
+
'Never5\\DownloadMonitor\\Shop\\Product\\WordPressRepository' => __DIR__ . '/../..' . '/src/Shop/Product/WordPressRepository.php',
|
247 |
+
'Never5\\DownloadMonitor\\Shop\\Services\\ServiceProvider' => __DIR__ . '/../..' . '/src/Shop/Services/ServiceProvider.php',
|
248 |
+
'Never5\\DownloadMonitor\\Shop\\Services\\Services' => __DIR__ . '/../..' . '/src/Shop/Services/Services.php',
|
249 |
+
'Never5\\DownloadMonitor\\Shop\\Session\\Cookie' => __DIR__ . '/../..' . '/src/Shop/Session/Cookie.php',
|
250 |
+
'Never5\\DownloadMonitor\\Shop\\Session\\Factory' => __DIR__ . '/../..' . '/src/Shop/Session/Factory.php',
|
251 |
+
'Never5\\DownloadMonitor\\Shop\\Session\\Item\\Factory' => __DIR__ . '/../..' . '/src/Shop/Session/Item/Factory.php',
|
252 |
+
'Never5\\DownloadMonitor\\Shop\\Session\\Item\\Item' => __DIR__ . '/../..' . '/src/Shop/Session/Item/Item.php',
|
253 |
+
'Never5\\DownloadMonitor\\Shop\\Session\\Manager' => __DIR__ . '/../..' . '/src/Shop/Session/Manager.php',
|
254 |
+
'Never5\\DownloadMonitor\\Shop\\Session\\Repository' => __DIR__ . '/../..' . '/src/Shop/Session/Repository.php',
|
255 |
+
'Never5\\DownloadMonitor\\Shop\\Session\\Session' => __DIR__ . '/../..' . '/src/Shop/Session/Session.php',
|
256 |
+
'Never5\\DownloadMonitor\\Shop\\Session\\WordPressRepository' => __DIR__ . '/../..' . '/src/Shop/Session/WordPressRepository.php',
|
257 |
+
'Never5\\DownloadMonitor\\Shop\\Shortcode\\Buy' => __DIR__ . '/../..' . '/src/Shop/Shortcode/Buy.php',
|
258 |
+
'Never5\\DownloadMonitor\\Shop\\Shortcode\\Cart' => __DIR__ . '/../..' . '/src/Shop/Shortcode/Cart.php',
|
259 |
+
'Never5\\DownloadMonitor\\Shop\\Shortcode\\Checkout' => __DIR__ . '/../..' . '/src/Shop/Shortcode/Checkout.php',
|
260 |
+
'Never5\\DownloadMonitor\\Shop\\Tax\\TaxClassManager' => __DIR__ . '/../..' . '/src/Shop/Tax/TaxClassManager.php',
|
261 |
+
'Never5\\DownloadMonitor\\Shop\\Tax\\TaxRate' => __DIR__ . '/../..' . '/src/Shop/Tax/TaxRate.php',
|
262 |
+
'Never5\\DownloadMonitor\\Shop\\Util\\Assets' => __DIR__ . '/../..' . '/src/Shop/Util/Assets.php',
|
263 |
+
'Never5\\DownloadMonitor\\Shop\\Util\\Page' => __DIR__ . '/../..' . '/src/Shop/Util/Page.php',
|
264 |
+
'Never5\\DownloadMonitor\\Shop\\Util\\PostType' => __DIR__ . '/../..' . '/src/Shop/Util/PostType.php',
|
265 |
+
'Never5\\DownloadMonitor\\Shop\\Util\\Redirect' => __DIR__ . '/../..' . '/src/Shop/Util/Redirect.php',
|
266 |
+
'Never5\\DownloadMonitor\\Shop\\Util\\TemplateInjector' => __DIR__ . '/../..' . '/src/Shop/Util/TemplateInjector.php',
|
267 |
+
'Never5\\DownloadMonitor\\Util\\ExtensionLoader' => __DIR__ . '/../..' . '/src/Util/ExtensionLoader.php',
|
268 |
+
'Never5\\DownloadMonitor\\Util\\Onboarding' => __DIR__ . '/../..' . '/src/Util/Onboarding.php',
|
269 |
+
'Never5\\DownloadMonitor\\Util\\PageCreator' => __DIR__ . '/../..' . '/src/Util/PageCreator.php',
|
270 |
+
'WPChill\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\PimpleServiceProviderInterfaceTest' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/PimpleServiceProviderInterfaceTest.php',
|
271 |
+
'WPChill\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\PimpleTest' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/PimpleTest.php',
|
272 |
+
'WPChill\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Psr11\\ContainerTest' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/Psr11/ContainerTest.php',
|
273 |
+
'WPChill\\DownloadMonitor\\Dependencies\\Pimple\\Tests\\Psr11\\ServiceLocatorTest' => __DIR__ . '/../..' . '/src/Dependencies/Pimple/Tests/Psr11/ServiceLocatorTest.php',
|
274 |
+
'WP_DLM' => __DIR__ . '/../..' . '/src/DLM.php',
|
275 |
+
);
|
276 |
+
|
277 |
+
public static function getInitializer(ClassLoader $loader)
|
278 |
+
{
|
279 |
+
return \Closure::bind(function () use ($loader) {
|
280 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit80ce4473100edd20fd6c17775a76ce9a::$prefixLengthsPsr4;
|
281 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit80ce4473100edd20fd6c17775a76ce9a::$prefixDirsPsr4;
|
282 |
+
$loader->classMap = ComposerStaticInit80ce4473100edd20fd6c17775a76ce9a::$classMap;
|
283 |
+
|
284 |
+
}, null, ClassLoader::class);
|
285 |
+
}
|
286 |
+
}
|