Changeset 3104911
- Timestamp:
- 06/20/2024 07:46:16 AM (9 months ago)
- Location:
- woocommerce-pos
- Files:
-
- 34 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-pos/tags/1.6.2/includes/API/Customers_Controller.php
r3104241 r3104911 337 337 $execution_time = microtime( true ) - $start_time; 338 338 $execution_time_ms = number_format( $execution_time * 1000, 2 ); 339 $server_load = sys_getloadavg();339 $server_load = $this->get_server_load(); 340 340 341 341 $response = rest_ensure_response( $formatted_results ); -
woocommerce-pos/tags/1.6.2/includes/API/Orders_Controller.php
r3102003 r3104911 735 735 $execution_time = microtime( true ) - $start_time; 736 736 $execution_time_ms = number_format( $execution_time * 1000, 2 ); 737 $server_load = sys_getloadavg();737 $server_load = $this->get_server_load(); 738 738 739 739 $response = rest_ensure_response( $formatted_results ); -
woocommerce-pos/tags/1.6.2/includes/API/Product_Categories_Controller.php
r3102003 r3104911 179 179 $execution_time = microtime( true ) - $start_time; 180 180 $execution_time_ms = number_format( $execution_time * 1000, 2 ); 181 $server_load = sys_getloadavg();181 $server_load = $this->get_server_load(); 182 182 183 183 $response = rest_ensure_response( $formatted_results ); -
woocommerce-pos/tags/1.6.2/includes/API/Product_Tags_Controller.php
r3104241 r3104911 179 179 $execution_time = microtime( true ) - $start_time; 180 180 $execution_time_ms = number_format( $execution_time * 1000, 2 ); 181 $server_load = sys_getloadavg();181 $server_load = $this->get_server_load(); 182 182 183 183 $response = rest_ensure_response( $formatted_results ); -
woocommerce-pos/tags/1.6.2/includes/API/Product_Variations_Controller.php
r3104241 r3104911 454 454 $execution_time = microtime( true ) - $start_time; 455 455 $execution_time_ms = number_format( $execution_time * 1000, 2 ); 456 $server_load = sys_getloadavg();456 $server_load = $this->get_server_load(); 457 457 458 458 $response = rest_ensure_response( $formatted_results ); -
woocommerce-pos/tags/1.6.2/includes/API/Products_Controller.php
r3104241 r3104911 510 510 $execution_time = microtime( true ) - $start_time; 511 511 $execution_time_ms = number_format( $execution_time * 1000, 2 ); 512 $server_load = sys_getloadavg();512 $server_load = $this->get_server_load(); 513 513 514 514 $response = rest_ensure_response( $formatted_results ); -
woocommerce-pos/tags/1.6.2/includes/API/Taxes_Controller.php
r3102003 r3104911 248 248 $execution_time = microtime( true ) - $start_time; 249 249 $execution_time_ms = number_format( $execution_time * 1000, 2 ); 250 $server_load = sys_getloadavg();250 $server_load = $this->get_server_load(); 251 251 252 252 $response = rest_ensure_response( $formatted_results ); -
woocommerce-pos/tags/1.6.2/includes/API/Traits/WCPOS_REST_API.php
r3104241 r3104911 98 98 return true === $allow_decimal_quantities; 99 99 } 100 101 /** 102 * Get server load average. 103 * 104 * @return array The load average. 105 */ 106 public function get_server_load() { 107 try { 108 if ( stristr( PHP_OS, 'win' ) ) { 109 // Use WMIC to get load percentage from Windows. 110 $load = @shell_exec( 'wmic cpu get loadpercentage /all' ); 111 if ( $load ) { 112 $load = explode( "\n", $load ); 113 if ( isset( $load[1] ) ) { 114 $load = intval( $load[1] ); 115 return array( $load, $load, $load ); // Mimic the array structure of sys_getloadavg(). 116 } 117 } 118 } elseif ( function_exists( 'sys_getloadavg' ) ) { 119 return sys_getloadavg(); 120 } 121 } catch ( Exception $e ) { 122 // Log the error for debugging purposes. 123 Logger::log( 'Error getting server load: ' . $e->getMessage() ); 124 } 125 126 // Fallback if no method is available or an error occurs. 127 return array( 0, 0, 0 ); 128 } 100 129 } -
woocommerce-pos/tags/1.6.2/readme.txt
r3104241 r3104911 80 80 81 81 == Changelog == 82 83 = 1.6.2 - 2024/06/20 = 84 - Fix: Error preventing resources (products, orders, customers, etc) from loading on Windows servers 82 85 83 86 = 1.6.1 - 2024/06/18 = -
woocommerce-pos/tags/1.6.2/vendor/autoload.php
r3104241 r3104911 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 8daa22bd77ffda310551229f28983943::getLoader();25 return ComposerAutoloaderInitc98b80182214e6ff7ae8eafd10e585d0::getLoader(); -
woocommerce-pos/tags/1.6.2/vendor/composer/autoload_real.php
r3104241 r3104911 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 8daa22bd77ffda310551229f289839435 class ComposerAutoloaderInitc98b80182214e6ff7ae8eafd10e585d0 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit 8daa22bd77ffda310551229f28983943', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInitc98b80182214e6ff7ae8eafd10e585d0', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit 8daa22bd77ffda310551229f28983943', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInitc98b80182214e6ff7ae8eafd10e585d0', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit 8daa22bd77ffda310551229f28983943::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::getInitializer($loader)); 31 31 32 32 $loader->register(true); 33 33 34 $filesToLoad = \Composer\Autoload\ComposerStaticInit 8daa22bd77ffda310551229f28983943::$files;34 $filesToLoad = \Composer\Autoload\ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$files; 35 35 $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { 36 36 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
woocommerce-pos/tags/1.6.2/vendor/composer/autoload_static.php
r3104241 r3104911 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 8daa22bd77ffda310551229f289839437 class ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0 8 8 { 9 9 public static $files = array ( … … 304 304 { 305 305 return \Closure::bind(function () use ($loader) { 306 $loader->prefixLengthsPsr4 = ComposerStaticInit 8daa22bd77ffda310551229f28983943::$prefixLengthsPsr4;307 $loader->prefixDirsPsr4 = ComposerStaticInit 8daa22bd77ffda310551229f28983943::$prefixDirsPsr4;308 $loader->prefixesPsr0 = ComposerStaticInit 8daa22bd77ffda310551229f28983943::$prefixesPsr0;309 $loader->classMap = ComposerStaticInit 8daa22bd77ffda310551229f28983943::$classMap;306 $loader->prefixLengthsPsr4 = ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$prefixLengthsPsr4; 307 $loader->prefixDirsPsr4 = ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$prefixDirsPsr4; 308 $loader->prefixesPsr0 = ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$prefixesPsr0; 309 $loader->classMap = ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$classMap; 310 310 311 311 }, null, ClassLoader::class); -
woocommerce-pos/tags/1.6.2/vendor/composer/installed.json
r3102003 r3104911 313 313 { 314 314 "name": "symfony/polyfill-ctype", 315 "version": "v1. 29.0",316 "version_normalized": "1. 29.0.0",315 "version": "v1.30.0", 316 "version_normalized": "1.30.0.0", 317 317 "source": { 318 318 "type": "git", 319 319 "url": "https://github.com/symfony/polyfill-ctype.git", 320 "reference": " ef4d7e442ca910c4764bce785146269b30cb5fc4"321 }, 322 "dist": { 323 "type": "zip", 324 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ ef4d7e442ca910c4764bce785146269b30cb5fc4",325 "reference": " ef4d7e442ca910c4764bce785146269b30cb5fc4",320 "reference": "0424dff1c58f028c451efff2045f5d92410bd540" 321 }, 322 "dist": { 323 "type": "zip", 324 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/0424dff1c58f028c451efff2045f5d92410bd540", 325 "reference": "0424dff1c58f028c451efff2045f5d92410bd540", 326 326 "shasum": "" 327 327 }, … … 335 335 "ext-ctype": "For best performance" 336 336 }, 337 "time": "2024-0 1-29T20:11:03+00:00",337 "time": "2024-05-31T15:07:36+00:00", 338 338 "type": "library", 339 339 "extra": { … … 375 375 ], 376 376 "support": { 377 "source": "https://github.com/symfony/polyfill-ctype/tree/v1. 29.0"377 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0" 378 378 }, 379 379 "funding": [ … … 395 395 { 396 396 "name": "symfony/polyfill-php80", 397 "version": "v1. 29.0",398 "version_normalized": "1. 29.0.0",397 "version": "v1.30.0", 398 "version_normalized": "1.30.0.0", 399 399 "source": { 400 400 "type": "git", 401 401 "url": "https://github.com/symfony/polyfill-php80.git", 402 "reference": " 87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"403 }, 404 "dist": { 405 "type": "zip", 406 "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/ 87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",407 "reference": " 87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",402 "reference": "77fa7995ac1b21ab60769b7323d600a991a90433" 403 }, 404 "dist": { 405 "type": "zip", 406 "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433", 407 "reference": "77fa7995ac1b21ab60769b7323d600a991a90433", 408 408 "shasum": "" 409 409 }, … … 411 411 "php": ">=7.1" 412 412 }, 413 "time": "2024-0 1-29T20:11:03+00:00",413 "time": "2024-05-31T15:07:36+00:00", 414 414 "type": "library", 415 415 "extra": { … … 458 458 ], 459 459 "support": { 460 "source": "https://github.com/symfony/polyfill-php80/tree/v1. 29.0"460 "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0" 461 461 }, 462 462 "funding": [ … … 478 478 { 479 479 "name": "symfony/polyfill-php81", 480 "version": "v1. 29.0",481 "version_normalized": "1. 29.0.0",480 "version": "v1.30.0", 481 "version_normalized": "1.30.0.0", 482 482 "source": { 483 483 "type": "git", 484 484 "url": "https://github.com/symfony/polyfill-php81.git", 485 "reference": " c565ad1e63f30e7477fc40738343c62b40bc672d"486 }, 487 "dist": { 488 "type": "zip", 489 "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/ c565ad1e63f30e7477fc40738343c62b40bc672d",490 "reference": " c565ad1e63f30e7477fc40738343c62b40bc672d",485 "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af" 486 }, 487 "dist": { 488 "type": "zip", 489 "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/3fb075789fb91f9ad9af537c4012d523085bd5af", 490 "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af", 491 491 "shasum": "" 492 492 }, … … 494 494 "php": ">=7.1" 495 495 }, 496 "time": "2024-0 1-29T20:11:03+00:00",496 "time": "2024-06-19T12:30:46+00:00", 497 497 "type": "library", 498 498 "extra": { … … 537 537 ], 538 538 "support": { 539 "source": "https://github.com/symfony/polyfill-php81/tree/v1. 29.0"539 "source": "https://github.com/symfony/polyfill-php81/tree/v1.30.0" 540 540 }, 541 541 "funding": [ -
woocommerce-pos/tags/1.6.2/vendor/composer/installed.php
r3104241 r3104911 2 2 'root' => array( 3 3 'name' => 'wcpos/woocommerce-pos', 4 'pretty_version' => 'v1.6. 1',5 'version' => '1.6. 1.0',6 'reference' => ' e3a36ec1a0184e9ed2bfa32842080aa07087d922',4 'pretty_version' => 'v1.6.2', 5 'version' => '1.6.2.0', 6 'reference' => '02641dbdae75b0df95452de501b6d402c988df8a', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 54 54 ), 55 55 'symfony/polyfill-ctype' => array( 56 'pretty_version' => 'v1. 29.0',57 'version' => '1. 29.0.0',58 'reference' => ' ef4d7e442ca910c4764bce785146269b30cb5fc4',56 'pretty_version' => 'v1.30.0', 57 'version' => '1.30.0.0', 58 'reference' => '0424dff1c58f028c451efff2045f5d92410bd540', 59 59 'type' => 'library', 60 60 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', … … 63 63 ), 64 64 'symfony/polyfill-php80' => array( 65 'pretty_version' => 'v1. 29.0',66 'version' => '1. 29.0.0',67 'reference' => ' 87b68208d5c1188808dd7839ee1e6c8ec3b02f1b',65 'pretty_version' => 'v1.30.0', 66 'version' => '1.30.0.0', 67 'reference' => '77fa7995ac1b21ab60769b7323d600a991a90433', 68 68 'type' => 'library', 69 69 'install_path' => __DIR__ . '/../symfony/polyfill-php80', … … 72 72 ), 73 73 'symfony/polyfill-php81' => array( 74 'pretty_version' => 'v1. 29.0',75 'version' => '1. 29.0.0',76 'reference' => ' c565ad1e63f30e7477fc40738343c62b40bc672d',74 'pretty_version' => 'v1.30.0', 75 'version' => '1.30.0.0', 76 'reference' => '3fb075789fb91f9ad9af537c4012d523085bd5af', 77 77 'type' => 'library', 78 78 'install_path' => __DIR__ . '/../symfony/polyfill-php81', … … 81 81 ), 82 82 'wcpos/woocommerce-pos' => array( 83 'pretty_version' => 'v1.6. 1',84 'version' => '1.6. 1.0',85 'reference' => ' e3a36ec1a0184e9ed2bfa32842080aa07087d922',83 'pretty_version' => 'v1.6.2', 84 'version' => '1.6.2.0', 85 'reference' => '02641dbdae75b0df95452de501b6d402c988df8a', 86 86 'type' => 'wordpress-plugin', 87 87 'install_path' => __DIR__ . '/../../', -
woocommerce-pos/tags/1.6.2/vendor/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php
r3005250 r3104911 33 33 34 34 if (is_object($value) ? !method_exists($value, '__toString') : !is_scalar($value)) { 35 throw new \TypeError('Cannot assign '.gettype($value).' to property CURLStringFile::$data of type string');35 throw new TypeError('Cannot assign '.gettype($value).' to property CURLStringFile::$data of type string'); 36 36 } 37 37 -
woocommerce-pos/tags/1.6.2/vendor_prefixed/autoload.php
r3102003 r3104911 4 4 5 5 $classMap = [ 6 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheCoreException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheCoreException.php', 7 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheIOException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheIOException.php', 6 8 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverCheckException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverCheckException.php', 7 'WCPOS\Vendor\Phpfastcache\Exceptions\Phpfastcache SimpleCacheException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheSimpleCacheException.php',8 'WCPOS\Vendor\Phpfastcache\Exceptions\Phpfastcache DriverNotFoundException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverNotFoundException.php',9 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheI OException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheIOException.php',9 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheReplicationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheReplicationException.php', 10 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidArgumentException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidArgumentException.php', 11 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidConfigurationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidConfigurationException.php', 10 12 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidArgumentTypeException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidArgumentTypeException.php', 11 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheCoreException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheCoreException.php',12 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidConfigurationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidConfigurationException.php',13 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverException.php',14 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDeprecatedException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDeprecatedException.php',15 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheReplicationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheReplicationException.php',16 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheExceptionInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheExceptionInterface.php',17 13 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheUnsupportedOperationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheUnsupportedOperationException.php', 18 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInstanceNotFoundException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInstanceNotFoundException.php',19 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidArgumentException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidArgumentException.php',20 14 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheLogicException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheLogicException.php', 21 15 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverConnectException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverConnectException.php', 16 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheExceptionInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheExceptionInterface.php', 17 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheSimpleCacheException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheSimpleCacheException.php', 18 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInstanceNotFoundException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInstanceNotFoundException.php', 22 19 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheRootException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheRootException.php', 23 'WCPOS\Vendor\Phpfastcache\Util\ClassNamespaceResolverInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/ClassNamespaceResolverInterface.php', 20 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverException.php', 21 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverNotFoundException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverNotFoundException.php', 22 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDeprecatedException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDeprecatedException.php', 23 'WCPOS\Vendor\Phpfastcache\Helper\CacheConditionalHelper' => './phpfastcache/phpfastcache/lib/Phpfastcache/Helper/CacheConditionalHelper.php', 24 'WCPOS\Vendor\Phpfastcache\Helper\Psr16Adapter' => './phpfastcache/phpfastcache/lib/Phpfastcache/Helper/Psr16Adapter.php', 25 'WCPOS\Vendor\Phpfastcache\Cluster\AggregatorInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/AggregatorInterface.php', 26 'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolInterface.php', 27 'WCPOS\Vendor\Phpfastcache\Cluster\ItemAbstract' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ItemAbstract.php', 28 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\RandomReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/RandomReplication/Item.php', 29 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\RandomReplication\RandomReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/RandomReplication/RandomReplicationCluster.php', 30 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\SemiReplication\SemiReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/SemiReplication/SemiReplicationCluster.php', 31 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\SemiReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/SemiReplication/Item.php', 32 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\MasterSlaveReplication\MasterSlaveReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/MasterSlaveReplication/MasterSlaveReplicationCluster.php', 33 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\MasterSlaveReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/MasterSlaveReplication/Item.php', 34 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\FullReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/FullReplication/Item.php', 35 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\FullReplication\FullReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/FullReplication/FullReplicationCluster.php', 36 'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolTrait.php', 37 'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolAbstract' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolAbstract.php', 38 'WCPOS\Vendor\Phpfastcache\Cluster\ClusterAggregator' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterAggregator.php', 39 'WCPOS\Vendor\Phpfastcache\Cluster\AggregatablePoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/AggregatablePoolInterface.php', 40 'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Item.php', 41 'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Driver.php', 42 'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Config.php', 43 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Item.php', 44 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Driver.php', 45 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Config.php', 46 'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Item.php', 47 'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Driver.php', 48 'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Config.php', 49 'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Item.php', 50 'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Driver.php', 51 'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Config.php', 52 'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Item.php', 53 'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Driver.php', 54 'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Config.php', 55 'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Item.php', 56 'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Driver.php', 57 'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Config.php', 58 'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Item.php', 59 'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Driver.php', 60 'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Config.php', 61 'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Item.php', 62 'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Driver.php', 63 'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Config.php', 64 'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Item.php', 65 'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Driver.php', 66 'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Config.php', 67 'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Item.php', 68 'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Driver.php', 69 'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Config.php', 70 'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Item.php', 71 'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Driver.php', 72 'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Config.php', 73 'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Item.php', 74 'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Driver.php', 75 'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Config.php', 76 'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Item.php', 77 'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Driver.php', 78 'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Config.php', 79 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Item.php', 80 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Driver.php', 81 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Config.php', 82 'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Item.php', 83 'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Driver.php', 84 'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Config.php', 85 'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Item.php', 86 'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Driver.php', 87 'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Config.php', 88 'WCPOS\Vendor\Phpfastcache\Drivers\Files\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Item.php', 89 'WCPOS\Vendor\Phpfastcache\Drivers\Files\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Driver.php', 90 'WCPOS\Vendor\Phpfastcache\Drivers\Files\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Config.php', 91 'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Item.php', 92 'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Driver.php', 93 'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Config.php', 94 'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Item.php', 95 'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Driver.php', 96 'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Config.php', 97 'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Item.php', 98 'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Driver.php', 99 'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Config.php', 100 'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Item.php', 101 'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Driver.php', 102 'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Config.php', 103 'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Item.php', 104 'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Driver.php', 105 'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Config.php', 106 'WCPOS\Vendor\Phpfastcache\CacheManager' => './phpfastcache/phpfastcache/lib/Phpfastcache/CacheManager.php', 107 'WCPOS\Vendor\Phpfastcache\EventManager' => './phpfastcache/phpfastcache/lib/Phpfastcache/EventManager.php', 108 'WCPOS\Vendor\Phpfastcache\Proxy\PhpfastcacheAbstractProxy' => './phpfastcache/phpfastcache/lib/Phpfastcache/Proxy/PhpfastcacheAbstractProxy.php', 109 'WCPOS\Vendor\Phpfastcache\Api' => './phpfastcache/phpfastcache/lib/Phpfastcache/Api.php', 110 'WCPOS\Vendor\Phpfastcache\Event\EventManagerDispatcherTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerDispatcherTrait.php', 111 'WCPOS\Vendor\Phpfastcache\Event\EventManagerDispatcherInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerDispatcherInterface.php', 112 'WCPOS\Vendor\Phpfastcache\Event\EventManagerInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerInterface.php', 113 'WCPOS\Vendor\Phpfastcache\Entities\ItemBatch' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/ItemBatch.php', 114 'WCPOS\Vendor\Phpfastcache\Entities\DriverStatistic' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/DriverStatistic.php', 115 'WCPOS\Vendor\Phpfastcache\Entities\DriverIO' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/DriverIO.php', 116 'WCPOS\Vendor\Phpfastcache\Core\Item\ExtendedCacheItemInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ExtendedCacheItemInterface.php', 117 'WCPOS\Vendor\Phpfastcache\Core\Item\TaggableCacheItemInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/TaggableCacheItemInterface.php', 118 'WCPOS\Vendor\Phpfastcache\Core\Item\TaggableCacheItemTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/TaggableCacheItemTrait.php', 119 'WCPOS\Vendor\Phpfastcache\Core\Item\ItemBaseTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ItemBaseTrait.php', 120 'WCPOS\Vendor\Phpfastcache\Core\Item\ItemExtendedTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ItemExtendedTrait.php', 121 'WCPOS\Vendor\Phpfastcache\Core\Pool\AbstractDriverPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/AbstractDriverPoolTrait.php', 122 'WCPOS\Vendor\Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolInterface.php', 123 'WCPOS\Vendor\Phpfastcache\Core\Pool\TaggableCacheItemPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/TaggableCacheItemPoolInterface.php', 124 'WCPOS\Vendor\Phpfastcache\Core\Pool\IO\IOHelperTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/IO/IOHelperTrait.php', 125 'WCPOS\Vendor\Phpfastcache\Core\Pool\ExtendedCacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolTrait.php', 126 'WCPOS\Vendor\Phpfastcache\Core\Pool\TaggableCacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/TaggableCacheItemPoolTrait.php', 127 'WCPOS\Vendor\Phpfastcache\Core\Pool\DriverBaseTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/DriverBaseTrait.php', 128 'WCPOS\Vendor\Phpfastcache\Core\Pool\CacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/CacheItemPoolTrait.php', 24 129 'WCPOS\Vendor\Phpfastcache\Util\MemcacheDriverCollisionDetectorTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/MemcacheDriverCollisionDetectorTrait.php', 25 130 'WCPOS\Vendor\Phpfastcache\Util\ArrayObject' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/ArrayObject.php', 26 131 'WCPOS\Vendor\Phpfastcache\Util\ClassNamespaceResolverTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/ClassNamespaceResolverTrait.php', 132 'WCPOS\Vendor\Phpfastcache\Util\ClassNamespaceResolverInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/ClassNamespaceResolverInterface.php', 27 133 'WCPOS\Vendor\Phpfastcache\Util\Directory' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/Directory.php', 28 'WCPOS\Vendor\Phpfastcache\Event\EventManagerDispatcherTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerDispatcherTrait.php',29 'WCPOS\Vendor\Phpfastcache\Event\EventManagerInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerInterface.php',30 'WCPOS\Vendor\Phpfastcache\Event\EventManagerDispatcherInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerDispatcherInterface.php',31 'WCPOS\Vendor\Phpfastcache\CacheManager' => './phpfastcache/phpfastcache/lib/Phpfastcache/CacheManager.php',32 'WCPOS\Vendor\Phpfastcache\Core\Item\ItemExtendedTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ItemExtendedTrait.php',33 'WCPOS\Vendor\Phpfastcache\Core\Item\ItemBaseTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ItemBaseTrait.php',34 'WCPOS\Vendor\Phpfastcache\Core\Item\TaggableCacheItemTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/TaggableCacheItemTrait.php',35 'WCPOS\Vendor\Phpfastcache\Core\Item\ExtendedCacheItemInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ExtendedCacheItemInterface.php',36 'WCPOS\Vendor\Phpfastcache\Core\Item\TaggableCacheItemInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/TaggableCacheItemInterface.php',37 'WCPOS\Vendor\Phpfastcache\Core\Pool\ExtendedCacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolTrait.php',38 'WCPOS\Vendor\Phpfastcache\Core\Pool\TaggableCacheItemPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/TaggableCacheItemPoolInterface.php',39 'WCPOS\Vendor\Phpfastcache\Core\Pool\CacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/CacheItemPoolTrait.php',40 'WCPOS\Vendor\Phpfastcache\Core\Pool\DriverBaseTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/DriverBaseTrait.php',41 'WCPOS\Vendor\Phpfastcache\Core\Pool\AbstractDriverPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/AbstractDriverPoolTrait.php',42 'WCPOS\Vendor\Phpfastcache\Core\Pool\TaggableCacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/TaggableCacheItemPoolTrait.php',43 'WCPOS\Vendor\Phpfastcache\Core\Pool\IO\IOHelperTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/IO/IOHelperTrait.php',44 'WCPOS\Vendor\Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolInterface.php',45 'WCPOS\Vendor\Phpfastcache\Proxy\PhpfastcacheAbstractProxy' => './phpfastcache/phpfastcache/lib/Phpfastcache/Proxy/PhpfastcacheAbstractProxy.php',46 'WCPOS\Vendor\Phpfastcache\Helper\CacheConditionalHelper' => './phpfastcache/phpfastcache/lib/Phpfastcache/Helper/CacheConditionalHelper.php',47 'WCPOS\Vendor\Phpfastcache\Helper\Psr16Adapter' => './phpfastcache/phpfastcache/lib/Phpfastcache/Helper/Psr16Adapter.php',48 'WCPOS\Vendor\Phpfastcache\Config\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/Config.php',49 134 'WCPOS\Vendor\Phpfastcache\Config\ConfigurationOption' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/ConfigurationOption.php', 50 135 'WCPOS\Vendor\Phpfastcache\Config\IOConfigurationOptionTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/IOConfigurationOptionTrait.php', 136 'WCPOS\Vendor\Phpfastcache\Config\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/Config.php', 51 137 'WCPOS\Vendor\Phpfastcache\Config\ConfigurationOptionInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/ConfigurationOptionInterface.php', 52 'WCPOS\Vendor\Phpfastcache\Cluster\AggregatablePoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/AggregatablePoolInterface.php', 53 'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolInterface.php', 54 'WCPOS\Vendor\Phpfastcache\Cluster\ClusterAggregator' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterAggregator.php', 55 'WCPOS\Vendor\Phpfastcache\Cluster\AggregatorInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/AggregatorInterface.php', 56 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\RandomReplication\RandomReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/RandomReplication/RandomReplicationCluster.php', 57 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\RandomReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/RandomReplication/Item.php', 58 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\SemiReplication\SemiReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/SemiReplication/SemiReplicationCluster.php', 59 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\SemiReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/SemiReplication/Item.php', 60 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\FullReplication\FullReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/FullReplication/FullReplicationCluster.php', 61 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\FullReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/FullReplication/Item.php', 62 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\MasterSlaveReplication\MasterSlaveReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/MasterSlaveReplication/MasterSlaveReplicationCluster.php', 63 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\MasterSlaveReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/MasterSlaveReplication/Item.php', 64 'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolTrait.php', 65 'WCPOS\Vendor\Phpfastcache\Cluster\ItemAbstract' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ItemAbstract.php', 66 'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolAbstract' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolAbstract.php', 67 'WCPOS\Vendor\Phpfastcache\Api' => './phpfastcache/phpfastcache/lib/Phpfastcache/Api.php', 68 'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Config.php', 69 'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Driver.php', 70 'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Item.php', 71 'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Config.php', 72 'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Driver.php', 73 'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Item.php', 74 'WCPOS\Vendor\Phpfastcache\Drivers\Files\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Config.php', 75 'WCPOS\Vendor\Phpfastcache\Drivers\Files\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Driver.php', 76 'WCPOS\Vendor\Phpfastcache\Drivers\Files\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Item.php', 77 'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Config.php', 78 'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Driver.php', 79 'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Item.php', 80 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Config.php', 81 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Driver.php', 82 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Item.php', 83 'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Config.php', 84 'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Driver.php', 85 'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Item.php', 86 'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Config.php', 87 'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Driver.php', 88 'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Item.php', 89 'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Config.php', 90 'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Driver.php', 91 'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Item.php', 92 'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Config.php', 93 'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Driver.php', 94 'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Item.php', 95 'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Config.php', 96 'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Driver.php', 97 'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Item.php', 98 'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Config.php', 99 'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Driver.php', 100 'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Item.php', 101 'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Config.php', 102 'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Driver.php', 103 'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Item.php', 104 'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Config.php', 105 'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Driver.php', 106 'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Item.php', 107 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Config.php', 108 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Driver.php', 109 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Item.php', 110 'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Config.php', 111 'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Driver.php', 112 'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Item.php', 113 'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Config.php', 114 'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Driver.php', 115 'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Item.php', 116 'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Config.php', 117 'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Driver.php', 118 'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Item.php', 119 'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Config.php', 120 'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Driver.php', 121 'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Item.php', 122 'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Config.php', 123 'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Driver.php', 124 'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Item.php', 125 'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Config.php', 126 'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Driver.php', 127 'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Item.php', 128 'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Config.php', 129 'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Driver.php', 130 'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Item.php', 131 'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Config.php', 132 'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Driver.php', 133 'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Item.php', 134 'WCPOS\Vendor\Phpfastcache\EventManager' => './phpfastcache/phpfastcache/lib/Phpfastcache/EventManager.php', 135 'WCPOS\Vendor\Phpfastcache\Entities\DriverStatistic' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/DriverStatistic.php', 136 'WCPOS\Vendor\Phpfastcache\Entities\ItemBatch' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/ItemBatch.php', 137 'WCPOS\Vendor\Phpfastcache\Entities\DriverIO' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/DriverIO.php', 138 'WCPOS\Vendor\Psr\SimpleCache\CacheInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/SimpleCache/src/CacheInterface.php', 138 'WCPOS\Vendor\Psr\Cache\InvalidArgumentException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/InvalidArgumentException.php', 139 'WCPOS\Vendor\Psr\Cache\CacheException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheException.php', 140 'WCPOS\Vendor\Psr\Cache\CacheItemInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheItemInterface.php', 141 'WCPOS\Vendor\Psr\Cache\CacheItemPoolInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheItemPoolInterface.php', 139 142 'WCPOS\Vendor\Psr\SimpleCache\InvalidArgumentException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/SimpleCache/src/InvalidArgumentException.php', 140 143 'WCPOS\Vendor\Psr\SimpleCache\CacheException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/SimpleCache/src/CacheException.php', 141 'WCPOS\Vendor\Psr\ Cache\CacheItemPoolInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheItemPoolInterface.php',142 'WCPOS\Vendor\ Psr\Cache\CacheItemInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheItemInterface.php',143 'WCPOS\Vendor\ Psr\Cache\InvalidArgumentException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/InvalidArgumentException.php',144 'WCPOS\Vendor\ Psr\Cache\CacheException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheException.php',144 'WCPOS\Vendor\Psr\SimpleCache\CacheInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/SimpleCache/src/CacheInterface.php', 145 'WCPOS\Vendor\Firebase\JWT\JWK' => './firebase/php-jwt/src/JWK.php', 146 'WCPOS\Vendor\Firebase\JWT\ExpiredException' => './firebase/php-jwt/src/ExpiredException.php', 147 'WCPOS\Vendor\Firebase\JWT\JWTExceptionWithPayloadInterface' => './firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php', 145 148 'WCPOS\Vendor\Firebase\JWT\CachedKeySet' => './firebase/php-jwt/src/CachedKeySet.php', 149 'WCPOS\Vendor\Firebase\JWT\Key' => './firebase/php-jwt/src/Key.php', 146 150 'WCPOS\Vendor\Firebase\JWT\JWT' => './firebase/php-jwt/src/JWT.php', 147 'WCPOS\Vendor\Firebase\JWT\ExpiredException' => './firebase/php-jwt/src/ExpiredException.php', 148 'WCPOS\Vendor\Firebase\JWT\JWK' => './firebase/php-jwt/src/JWK.php', 149 'WCPOS\Vendor\Firebase\JWT\Key' => './firebase/php-jwt/src/Key.php', 151 'WCPOS\Vendor\Firebase\JWT\BeforeValidException' => './firebase/php-jwt/src/BeforeValidException.php', 150 152 'WCPOS\Vendor\Firebase\JWT\SignatureInvalidException' => './firebase/php-jwt/src/SignatureInvalidException.php', 151 'WCPOS\Vendor\Firebase\JWT\BeforeValidException' => './firebase/php-jwt/src/BeforeValidException.php',152 'WCPOS\Vendor\Firebase\JWT\JWTExceptionWithPayloadInterface' => './firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php',153 153 ]; 154 154 -
woocommerce-pos/tags/1.6.2/woocommerce-pos.php
r3104241 r3104911 4 4 * Plugin URI: https://wordpress.org/plugins/woocommerce-pos/ 5 5 * Description: A simple front-end for taking WooCommerce orders at the Point of Sale. Requires <a href="http://wordpress.org/plugins/woocommerce/">WooCommerce</a>. 6 * Version: 1.6. 16 * Version: 1.6.2 7 7 * Author: kilbot 8 8 * Author URI: http://wcpos.com … … 15 15 * Requires PHP: 7.4 16 16 * Requires Plugins: woocommerce 17 * WC tested up to: 8.917 * WC tested up to: 9.0 18 18 * WC requires at least: 5.3 19 19 * … … 25 25 26 26 // Define plugin constants. 27 const VERSION = '1.6. 1';27 const VERSION = '1.6.2'; 28 28 const PLUGIN_NAME = 'woocommerce-pos'; 29 29 const SHORT_NAME = 'wcpos'; … … 38 38 39 39 // Load .env flags (for development). 40 function load_env( $file ) {40 function wcpos_load_env( $file ) { 41 41 if ( ! file_exists( $file ) ) { 42 42 return; … … 76 76 77 77 // Environment variables. 78 load_env( __DIR__ . '/.env' );78 wcpos_load_env( __DIR__ . '/.env' ); 79 79 80 80 // Error handling for autoload failure. -
woocommerce-pos/trunk/includes/API/Customers_Controller.php
r3104241 r3104911 337 337 $execution_time = microtime( true ) - $start_time; 338 338 $execution_time_ms = number_format( $execution_time * 1000, 2 ); 339 $server_load = sys_getloadavg();339 $server_load = $this->get_server_load(); 340 340 341 341 $response = rest_ensure_response( $formatted_results ); -
woocommerce-pos/trunk/includes/API/Orders_Controller.php
r3102003 r3104911 735 735 $execution_time = microtime( true ) - $start_time; 736 736 $execution_time_ms = number_format( $execution_time * 1000, 2 ); 737 $server_load = sys_getloadavg();737 $server_load = $this->get_server_load(); 738 738 739 739 $response = rest_ensure_response( $formatted_results ); -
woocommerce-pos/trunk/includes/API/Product_Categories_Controller.php
r3102003 r3104911 179 179 $execution_time = microtime( true ) - $start_time; 180 180 $execution_time_ms = number_format( $execution_time * 1000, 2 ); 181 $server_load = sys_getloadavg();181 $server_load = $this->get_server_load(); 182 182 183 183 $response = rest_ensure_response( $formatted_results ); -
woocommerce-pos/trunk/includes/API/Product_Tags_Controller.php
r3104241 r3104911 179 179 $execution_time = microtime( true ) - $start_time; 180 180 $execution_time_ms = number_format( $execution_time * 1000, 2 ); 181 $server_load = sys_getloadavg();181 $server_load = $this->get_server_load(); 182 182 183 183 $response = rest_ensure_response( $formatted_results ); -
woocommerce-pos/trunk/includes/API/Product_Variations_Controller.php
r3104241 r3104911 454 454 $execution_time = microtime( true ) - $start_time; 455 455 $execution_time_ms = number_format( $execution_time * 1000, 2 ); 456 $server_load = sys_getloadavg();456 $server_load = $this->get_server_load(); 457 457 458 458 $response = rest_ensure_response( $formatted_results ); -
woocommerce-pos/trunk/includes/API/Products_Controller.php
r3104241 r3104911 510 510 $execution_time = microtime( true ) - $start_time; 511 511 $execution_time_ms = number_format( $execution_time * 1000, 2 ); 512 $server_load = sys_getloadavg();512 $server_load = $this->get_server_load(); 513 513 514 514 $response = rest_ensure_response( $formatted_results ); -
woocommerce-pos/trunk/includes/API/Taxes_Controller.php
r3102003 r3104911 248 248 $execution_time = microtime( true ) - $start_time; 249 249 $execution_time_ms = number_format( $execution_time * 1000, 2 ); 250 $server_load = sys_getloadavg();250 $server_load = $this->get_server_load(); 251 251 252 252 $response = rest_ensure_response( $formatted_results ); -
woocommerce-pos/trunk/includes/API/Traits/WCPOS_REST_API.php
r3104241 r3104911 98 98 return true === $allow_decimal_quantities; 99 99 } 100 101 /** 102 * Get server load average. 103 * 104 * @return array The load average. 105 */ 106 public function get_server_load() { 107 try { 108 if ( stristr( PHP_OS, 'win' ) ) { 109 // Use WMIC to get load percentage from Windows. 110 $load = @shell_exec( 'wmic cpu get loadpercentage /all' ); 111 if ( $load ) { 112 $load = explode( "\n", $load ); 113 if ( isset( $load[1] ) ) { 114 $load = intval( $load[1] ); 115 return array( $load, $load, $load ); // Mimic the array structure of sys_getloadavg(). 116 } 117 } 118 } elseif ( function_exists( 'sys_getloadavg' ) ) { 119 return sys_getloadavg(); 120 } 121 } catch ( Exception $e ) { 122 // Log the error for debugging purposes. 123 Logger::log( 'Error getting server load: ' . $e->getMessage() ); 124 } 125 126 // Fallback if no method is available or an error occurs. 127 return array( 0, 0, 0 ); 128 } 100 129 } -
woocommerce-pos/trunk/readme.txt
r3104241 r3104911 80 80 81 81 == Changelog == 82 83 = 1.6.2 - 2024/06/20 = 84 - Fix: Error preventing resources (products, orders, customers, etc) from loading on Windows servers 82 85 83 86 = 1.6.1 - 2024/06/18 = -
woocommerce-pos/trunk/vendor/autoload.php
r3104241 r3104911 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 8daa22bd77ffda310551229f28983943::getLoader();25 return ComposerAutoloaderInitc98b80182214e6ff7ae8eafd10e585d0::getLoader(); -
woocommerce-pos/trunk/vendor/composer/autoload_real.php
r3104241 r3104911 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 8daa22bd77ffda310551229f289839435 class ComposerAutoloaderInitc98b80182214e6ff7ae8eafd10e585d0 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit 8daa22bd77ffda310551229f28983943', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInitc98b80182214e6ff7ae8eafd10e585d0', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit 8daa22bd77ffda310551229f28983943', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInitc98b80182214e6ff7ae8eafd10e585d0', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit 8daa22bd77ffda310551229f28983943::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::getInitializer($loader)); 31 31 32 32 $loader->register(true); 33 33 34 $filesToLoad = \Composer\Autoload\ComposerStaticInit 8daa22bd77ffda310551229f28983943::$files;34 $filesToLoad = \Composer\Autoload\ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$files; 35 35 $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { 36 36 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
woocommerce-pos/trunk/vendor/composer/autoload_static.php
r3104241 r3104911 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 8daa22bd77ffda310551229f289839437 class ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0 8 8 { 9 9 public static $files = array ( … … 304 304 { 305 305 return \Closure::bind(function () use ($loader) { 306 $loader->prefixLengthsPsr4 = ComposerStaticInit 8daa22bd77ffda310551229f28983943::$prefixLengthsPsr4;307 $loader->prefixDirsPsr4 = ComposerStaticInit 8daa22bd77ffda310551229f28983943::$prefixDirsPsr4;308 $loader->prefixesPsr0 = ComposerStaticInit 8daa22bd77ffda310551229f28983943::$prefixesPsr0;309 $loader->classMap = ComposerStaticInit 8daa22bd77ffda310551229f28983943::$classMap;306 $loader->prefixLengthsPsr4 = ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$prefixLengthsPsr4; 307 $loader->prefixDirsPsr4 = ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$prefixDirsPsr4; 308 $loader->prefixesPsr0 = ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$prefixesPsr0; 309 $loader->classMap = ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$classMap; 310 310 311 311 }, null, ClassLoader::class); -
woocommerce-pos/trunk/vendor/composer/installed.json
r3102003 r3104911 313 313 { 314 314 "name": "symfony/polyfill-ctype", 315 "version": "v1. 29.0",316 "version_normalized": "1. 29.0.0",315 "version": "v1.30.0", 316 "version_normalized": "1.30.0.0", 317 317 "source": { 318 318 "type": "git", 319 319 "url": "https://github.com/symfony/polyfill-ctype.git", 320 "reference": " ef4d7e442ca910c4764bce785146269b30cb5fc4"321 }, 322 "dist": { 323 "type": "zip", 324 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ ef4d7e442ca910c4764bce785146269b30cb5fc4",325 "reference": " ef4d7e442ca910c4764bce785146269b30cb5fc4",320 "reference": "0424dff1c58f028c451efff2045f5d92410bd540" 321 }, 322 "dist": { 323 "type": "zip", 324 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/0424dff1c58f028c451efff2045f5d92410bd540", 325 "reference": "0424dff1c58f028c451efff2045f5d92410bd540", 326 326 "shasum": "" 327 327 }, … … 335 335 "ext-ctype": "For best performance" 336 336 }, 337 "time": "2024-0 1-29T20:11:03+00:00",337 "time": "2024-05-31T15:07:36+00:00", 338 338 "type": "library", 339 339 "extra": { … … 375 375 ], 376 376 "support": { 377 "source": "https://github.com/symfony/polyfill-ctype/tree/v1. 29.0"377 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0" 378 378 }, 379 379 "funding": [ … … 395 395 { 396 396 "name": "symfony/polyfill-php80", 397 "version": "v1. 29.0",398 "version_normalized": "1. 29.0.0",397 "version": "v1.30.0", 398 "version_normalized": "1.30.0.0", 399 399 "source": { 400 400 "type": "git", 401 401 "url": "https://github.com/symfony/polyfill-php80.git", 402 "reference": " 87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"403 }, 404 "dist": { 405 "type": "zip", 406 "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/ 87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",407 "reference": " 87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",402 "reference": "77fa7995ac1b21ab60769b7323d600a991a90433" 403 }, 404 "dist": { 405 "type": "zip", 406 "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433", 407 "reference": "77fa7995ac1b21ab60769b7323d600a991a90433", 408 408 "shasum": "" 409 409 }, … … 411 411 "php": ">=7.1" 412 412 }, 413 "time": "2024-0 1-29T20:11:03+00:00",413 "time": "2024-05-31T15:07:36+00:00", 414 414 "type": "library", 415 415 "extra": { … … 458 458 ], 459 459 "support": { 460 "source": "https://github.com/symfony/polyfill-php80/tree/v1. 29.0"460 "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0" 461 461 }, 462 462 "funding": [ … … 478 478 { 479 479 "name": "symfony/polyfill-php81", 480 "version": "v1. 29.0",481 "version_normalized": "1. 29.0.0",480 "version": "v1.30.0", 481 "version_normalized": "1.30.0.0", 482 482 "source": { 483 483 "type": "git", 484 484 "url": "https://github.com/symfony/polyfill-php81.git", 485 "reference": " c565ad1e63f30e7477fc40738343c62b40bc672d"486 }, 487 "dist": { 488 "type": "zip", 489 "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/ c565ad1e63f30e7477fc40738343c62b40bc672d",490 "reference": " c565ad1e63f30e7477fc40738343c62b40bc672d",485 "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af" 486 }, 487 "dist": { 488 "type": "zip", 489 "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/3fb075789fb91f9ad9af537c4012d523085bd5af", 490 "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af", 491 491 "shasum": "" 492 492 }, … … 494 494 "php": ">=7.1" 495 495 }, 496 "time": "2024-0 1-29T20:11:03+00:00",496 "time": "2024-06-19T12:30:46+00:00", 497 497 "type": "library", 498 498 "extra": { … … 537 537 ], 538 538 "support": { 539 "source": "https://github.com/symfony/polyfill-php81/tree/v1. 29.0"539 "source": "https://github.com/symfony/polyfill-php81/tree/v1.30.0" 540 540 }, 541 541 "funding": [ -
woocommerce-pos/trunk/vendor/composer/installed.php
r3104241 r3104911 2 2 'root' => array( 3 3 'name' => 'wcpos/woocommerce-pos', 4 'pretty_version' => 'v1.6. 1',5 'version' => '1.6. 1.0',6 'reference' => ' e3a36ec1a0184e9ed2bfa32842080aa07087d922',4 'pretty_version' => 'v1.6.2', 5 'version' => '1.6.2.0', 6 'reference' => '02641dbdae75b0df95452de501b6d402c988df8a', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 54 54 ), 55 55 'symfony/polyfill-ctype' => array( 56 'pretty_version' => 'v1. 29.0',57 'version' => '1. 29.0.0',58 'reference' => ' ef4d7e442ca910c4764bce785146269b30cb5fc4',56 'pretty_version' => 'v1.30.0', 57 'version' => '1.30.0.0', 58 'reference' => '0424dff1c58f028c451efff2045f5d92410bd540', 59 59 'type' => 'library', 60 60 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', … … 63 63 ), 64 64 'symfony/polyfill-php80' => array( 65 'pretty_version' => 'v1. 29.0',66 'version' => '1. 29.0.0',67 'reference' => ' 87b68208d5c1188808dd7839ee1e6c8ec3b02f1b',65 'pretty_version' => 'v1.30.0', 66 'version' => '1.30.0.0', 67 'reference' => '77fa7995ac1b21ab60769b7323d600a991a90433', 68 68 'type' => 'library', 69 69 'install_path' => __DIR__ . '/../symfony/polyfill-php80', … … 72 72 ), 73 73 'symfony/polyfill-php81' => array( 74 'pretty_version' => 'v1. 29.0',75 'version' => '1. 29.0.0',76 'reference' => ' c565ad1e63f30e7477fc40738343c62b40bc672d',74 'pretty_version' => 'v1.30.0', 75 'version' => '1.30.0.0', 76 'reference' => '3fb075789fb91f9ad9af537c4012d523085bd5af', 77 77 'type' => 'library', 78 78 'install_path' => __DIR__ . '/../symfony/polyfill-php81', … … 81 81 ), 82 82 'wcpos/woocommerce-pos' => array( 83 'pretty_version' => 'v1.6. 1',84 'version' => '1.6. 1.0',85 'reference' => ' e3a36ec1a0184e9ed2bfa32842080aa07087d922',83 'pretty_version' => 'v1.6.2', 84 'version' => '1.6.2.0', 85 'reference' => '02641dbdae75b0df95452de501b6d402c988df8a', 86 86 'type' => 'wordpress-plugin', 87 87 'install_path' => __DIR__ . '/../../', -
woocommerce-pos/trunk/vendor/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php
r3005250 r3104911 33 33 34 34 if (is_object($value) ? !method_exists($value, '__toString') : !is_scalar($value)) { 35 throw new \TypeError('Cannot assign '.gettype($value).' to property CURLStringFile::$data of type string');35 throw new TypeError('Cannot assign '.gettype($value).' to property CURLStringFile::$data of type string'); 36 36 } 37 37 -
woocommerce-pos/trunk/vendor_prefixed/autoload.php
r3102003 r3104911 4 4 5 5 $classMap = [ 6 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheCoreException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheCoreException.php', 7 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheIOException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheIOException.php', 6 8 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverCheckException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverCheckException.php', 7 'WCPOS\Vendor\Phpfastcache\Exceptions\Phpfastcache SimpleCacheException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheSimpleCacheException.php',8 'WCPOS\Vendor\Phpfastcache\Exceptions\Phpfastcache DriverNotFoundException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverNotFoundException.php',9 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheI OException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheIOException.php',9 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheReplicationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheReplicationException.php', 10 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidArgumentException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidArgumentException.php', 11 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidConfigurationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidConfigurationException.php', 10 12 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidArgumentTypeException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidArgumentTypeException.php', 11 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheCoreException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheCoreException.php',12 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidConfigurationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidConfigurationException.php',13 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverException.php',14 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDeprecatedException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDeprecatedException.php',15 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheReplicationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheReplicationException.php',16 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheExceptionInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheExceptionInterface.php',17 13 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheUnsupportedOperationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheUnsupportedOperationException.php', 18 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInstanceNotFoundException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInstanceNotFoundException.php',19 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidArgumentException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidArgumentException.php',20 14 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheLogicException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheLogicException.php', 21 15 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverConnectException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverConnectException.php', 16 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheExceptionInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheExceptionInterface.php', 17 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheSimpleCacheException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheSimpleCacheException.php', 18 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInstanceNotFoundException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInstanceNotFoundException.php', 22 19 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheRootException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheRootException.php', 23 'WCPOS\Vendor\Phpfastcache\Util\ClassNamespaceResolverInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/ClassNamespaceResolverInterface.php', 20 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverException.php', 21 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverNotFoundException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverNotFoundException.php', 22 'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDeprecatedException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDeprecatedException.php', 23 'WCPOS\Vendor\Phpfastcache\Helper\CacheConditionalHelper' => './phpfastcache/phpfastcache/lib/Phpfastcache/Helper/CacheConditionalHelper.php', 24 'WCPOS\Vendor\Phpfastcache\Helper\Psr16Adapter' => './phpfastcache/phpfastcache/lib/Phpfastcache/Helper/Psr16Adapter.php', 25 'WCPOS\Vendor\Phpfastcache\Cluster\AggregatorInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/AggregatorInterface.php', 26 'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolInterface.php', 27 'WCPOS\Vendor\Phpfastcache\Cluster\ItemAbstract' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ItemAbstract.php', 28 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\RandomReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/RandomReplication/Item.php', 29 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\RandomReplication\RandomReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/RandomReplication/RandomReplicationCluster.php', 30 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\SemiReplication\SemiReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/SemiReplication/SemiReplicationCluster.php', 31 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\SemiReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/SemiReplication/Item.php', 32 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\MasterSlaveReplication\MasterSlaveReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/MasterSlaveReplication/MasterSlaveReplicationCluster.php', 33 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\MasterSlaveReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/MasterSlaveReplication/Item.php', 34 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\FullReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/FullReplication/Item.php', 35 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\FullReplication\FullReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/FullReplication/FullReplicationCluster.php', 36 'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolTrait.php', 37 'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolAbstract' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolAbstract.php', 38 'WCPOS\Vendor\Phpfastcache\Cluster\ClusterAggregator' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterAggregator.php', 39 'WCPOS\Vendor\Phpfastcache\Cluster\AggregatablePoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/AggregatablePoolInterface.php', 40 'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Item.php', 41 'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Driver.php', 42 'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Config.php', 43 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Item.php', 44 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Driver.php', 45 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Config.php', 46 'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Item.php', 47 'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Driver.php', 48 'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Config.php', 49 'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Item.php', 50 'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Driver.php', 51 'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Config.php', 52 'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Item.php', 53 'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Driver.php', 54 'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Config.php', 55 'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Item.php', 56 'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Driver.php', 57 'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Config.php', 58 'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Item.php', 59 'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Driver.php', 60 'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Config.php', 61 'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Item.php', 62 'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Driver.php', 63 'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Config.php', 64 'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Item.php', 65 'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Driver.php', 66 'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Config.php', 67 'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Item.php', 68 'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Driver.php', 69 'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Config.php', 70 'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Item.php', 71 'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Driver.php', 72 'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Config.php', 73 'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Item.php', 74 'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Driver.php', 75 'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Config.php', 76 'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Item.php', 77 'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Driver.php', 78 'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Config.php', 79 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Item.php', 80 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Driver.php', 81 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Config.php', 82 'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Item.php', 83 'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Driver.php', 84 'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Config.php', 85 'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Item.php', 86 'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Driver.php', 87 'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Config.php', 88 'WCPOS\Vendor\Phpfastcache\Drivers\Files\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Item.php', 89 'WCPOS\Vendor\Phpfastcache\Drivers\Files\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Driver.php', 90 'WCPOS\Vendor\Phpfastcache\Drivers\Files\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Config.php', 91 'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Item.php', 92 'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Driver.php', 93 'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Config.php', 94 'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Item.php', 95 'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Driver.php', 96 'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Config.php', 97 'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Item.php', 98 'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Driver.php', 99 'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Config.php', 100 'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Item.php', 101 'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Driver.php', 102 'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Config.php', 103 'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Item.php', 104 'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Driver.php', 105 'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Config.php', 106 'WCPOS\Vendor\Phpfastcache\CacheManager' => './phpfastcache/phpfastcache/lib/Phpfastcache/CacheManager.php', 107 'WCPOS\Vendor\Phpfastcache\EventManager' => './phpfastcache/phpfastcache/lib/Phpfastcache/EventManager.php', 108 'WCPOS\Vendor\Phpfastcache\Proxy\PhpfastcacheAbstractProxy' => './phpfastcache/phpfastcache/lib/Phpfastcache/Proxy/PhpfastcacheAbstractProxy.php', 109 'WCPOS\Vendor\Phpfastcache\Api' => './phpfastcache/phpfastcache/lib/Phpfastcache/Api.php', 110 'WCPOS\Vendor\Phpfastcache\Event\EventManagerDispatcherTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerDispatcherTrait.php', 111 'WCPOS\Vendor\Phpfastcache\Event\EventManagerDispatcherInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerDispatcherInterface.php', 112 'WCPOS\Vendor\Phpfastcache\Event\EventManagerInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerInterface.php', 113 'WCPOS\Vendor\Phpfastcache\Entities\ItemBatch' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/ItemBatch.php', 114 'WCPOS\Vendor\Phpfastcache\Entities\DriverStatistic' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/DriverStatistic.php', 115 'WCPOS\Vendor\Phpfastcache\Entities\DriverIO' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/DriverIO.php', 116 'WCPOS\Vendor\Phpfastcache\Core\Item\ExtendedCacheItemInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ExtendedCacheItemInterface.php', 117 'WCPOS\Vendor\Phpfastcache\Core\Item\TaggableCacheItemInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/TaggableCacheItemInterface.php', 118 'WCPOS\Vendor\Phpfastcache\Core\Item\TaggableCacheItemTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/TaggableCacheItemTrait.php', 119 'WCPOS\Vendor\Phpfastcache\Core\Item\ItemBaseTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ItemBaseTrait.php', 120 'WCPOS\Vendor\Phpfastcache\Core\Item\ItemExtendedTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ItemExtendedTrait.php', 121 'WCPOS\Vendor\Phpfastcache\Core\Pool\AbstractDriverPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/AbstractDriverPoolTrait.php', 122 'WCPOS\Vendor\Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolInterface.php', 123 'WCPOS\Vendor\Phpfastcache\Core\Pool\TaggableCacheItemPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/TaggableCacheItemPoolInterface.php', 124 'WCPOS\Vendor\Phpfastcache\Core\Pool\IO\IOHelperTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/IO/IOHelperTrait.php', 125 'WCPOS\Vendor\Phpfastcache\Core\Pool\ExtendedCacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolTrait.php', 126 'WCPOS\Vendor\Phpfastcache\Core\Pool\TaggableCacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/TaggableCacheItemPoolTrait.php', 127 'WCPOS\Vendor\Phpfastcache\Core\Pool\DriverBaseTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/DriverBaseTrait.php', 128 'WCPOS\Vendor\Phpfastcache\Core\Pool\CacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/CacheItemPoolTrait.php', 24 129 'WCPOS\Vendor\Phpfastcache\Util\MemcacheDriverCollisionDetectorTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/MemcacheDriverCollisionDetectorTrait.php', 25 130 'WCPOS\Vendor\Phpfastcache\Util\ArrayObject' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/ArrayObject.php', 26 131 'WCPOS\Vendor\Phpfastcache\Util\ClassNamespaceResolverTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/ClassNamespaceResolverTrait.php', 132 'WCPOS\Vendor\Phpfastcache\Util\ClassNamespaceResolverInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/ClassNamespaceResolverInterface.php', 27 133 'WCPOS\Vendor\Phpfastcache\Util\Directory' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/Directory.php', 28 'WCPOS\Vendor\Phpfastcache\Event\EventManagerDispatcherTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerDispatcherTrait.php',29 'WCPOS\Vendor\Phpfastcache\Event\EventManagerInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerInterface.php',30 'WCPOS\Vendor\Phpfastcache\Event\EventManagerDispatcherInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerDispatcherInterface.php',31 'WCPOS\Vendor\Phpfastcache\CacheManager' => './phpfastcache/phpfastcache/lib/Phpfastcache/CacheManager.php',32 'WCPOS\Vendor\Phpfastcache\Core\Item\ItemExtendedTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ItemExtendedTrait.php',33 'WCPOS\Vendor\Phpfastcache\Core\Item\ItemBaseTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ItemBaseTrait.php',34 'WCPOS\Vendor\Phpfastcache\Core\Item\TaggableCacheItemTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/TaggableCacheItemTrait.php',35 'WCPOS\Vendor\Phpfastcache\Core\Item\ExtendedCacheItemInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ExtendedCacheItemInterface.php',36 'WCPOS\Vendor\Phpfastcache\Core\Item\TaggableCacheItemInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/TaggableCacheItemInterface.php',37 'WCPOS\Vendor\Phpfastcache\Core\Pool\ExtendedCacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolTrait.php',38 'WCPOS\Vendor\Phpfastcache\Core\Pool\TaggableCacheItemPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/TaggableCacheItemPoolInterface.php',39 'WCPOS\Vendor\Phpfastcache\Core\Pool\CacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/CacheItemPoolTrait.php',40 'WCPOS\Vendor\Phpfastcache\Core\Pool\DriverBaseTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/DriverBaseTrait.php',41 'WCPOS\Vendor\Phpfastcache\Core\Pool\AbstractDriverPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/AbstractDriverPoolTrait.php',42 'WCPOS\Vendor\Phpfastcache\Core\Pool\TaggableCacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/TaggableCacheItemPoolTrait.php',43 'WCPOS\Vendor\Phpfastcache\Core\Pool\IO\IOHelperTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/IO/IOHelperTrait.php',44 'WCPOS\Vendor\Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolInterface.php',45 'WCPOS\Vendor\Phpfastcache\Proxy\PhpfastcacheAbstractProxy' => './phpfastcache/phpfastcache/lib/Phpfastcache/Proxy/PhpfastcacheAbstractProxy.php',46 'WCPOS\Vendor\Phpfastcache\Helper\CacheConditionalHelper' => './phpfastcache/phpfastcache/lib/Phpfastcache/Helper/CacheConditionalHelper.php',47 'WCPOS\Vendor\Phpfastcache\Helper\Psr16Adapter' => './phpfastcache/phpfastcache/lib/Phpfastcache/Helper/Psr16Adapter.php',48 'WCPOS\Vendor\Phpfastcache\Config\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/Config.php',49 134 'WCPOS\Vendor\Phpfastcache\Config\ConfigurationOption' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/ConfigurationOption.php', 50 135 'WCPOS\Vendor\Phpfastcache\Config\IOConfigurationOptionTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/IOConfigurationOptionTrait.php', 136 'WCPOS\Vendor\Phpfastcache\Config\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/Config.php', 51 137 'WCPOS\Vendor\Phpfastcache\Config\ConfigurationOptionInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/ConfigurationOptionInterface.php', 52 'WCPOS\Vendor\Phpfastcache\Cluster\AggregatablePoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/AggregatablePoolInterface.php', 53 'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolInterface.php', 54 'WCPOS\Vendor\Phpfastcache\Cluster\ClusterAggregator' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterAggregator.php', 55 'WCPOS\Vendor\Phpfastcache\Cluster\AggregatorInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/AggregatorInterface.php', 56 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\RandomReplication\RandomReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/RandomReplication/RandomReplicationCluster.php', 57 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\RandomReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/RandomReplication/Item.php', 58 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\SemiReplication\SemiReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/SemiReplication/SemiReplicationCluster.php', 59 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\SemiReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/SemiReplication/Item.php', 60 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\FullReplication\FullReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/FullReplication/FullReplicationCluster.php', 61 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\FullReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/FullReplication/Item.php', 62 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\MasterSlaveReplication\MasterSlaveReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/MasterSlaveReplication/MasterSlaveReplicationCluster.php', 63 'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\MasterSlaveReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/MasterSlaveReplication/Item.php', 64 'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolTrait.php', 65 'WCPOS\Vendor\Phpfastcache\Cluster\ItemAbstract' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ItemAbstract.php', 66 'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolAbstract' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolAbstract.php', 67 'WCPOS\Vendor\Phpfastcache\Api' => './phpfastcache/phpfastcache/lib/Phpfastcache/Api.php', 68 'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Config.php', 69 'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Driver.php', 70 'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Item.php', 71 'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Config.php', 72 'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Driver.php', 73 'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Item.php', 74 'WCPOS\Vendor\Phpfastcache\Drivers\Files\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Config.php', 75 'WCPOS\Vendor\Phpfastcache\Drivers\Files\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Driver.php', 76 'WCPOS\Vendor\Phpfastcache\Drivers\Files\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Item.php', 77 'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Config.php', 78 'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Driver.php', 79 'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Item.php', 80 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Config.php', 81 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Driver.php', 82 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Item.php', 83 'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Config.php', 84 'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Driver.php', 85 'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Item.php', 86 'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Config.php', 87 'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Driver.php', 88 'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Item.php', 89 'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Config.php', 90 'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Driver.php', 91 'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Item.php', 92 'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Config.php', 93 'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Driver.php', 94 'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Item.php', 95 'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Config.php', 96 'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Driver.php', 97 'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Item.php', 98 'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Config.php', 99 'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Driver.php', 100 'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Item.php', 101 'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Config.php', 102 'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Driver.php', 103 'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Item.php', 104 'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Config.php', 105 'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Driver.php', 106 'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Item.php', 107 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Config.php', 108 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Driver.php', 109 'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Item.php', 110 'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Config.php', 111 'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Driver.php', 112 'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Item.php', 113 'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Config.php', 114 'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Driver.php', 115 'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Item.php', 116 'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Config.php', 117 'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Driver.php', 118 'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Item.php', 119 'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Config.php', 120 'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Driver.php', 121 'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Item.php', 122 'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Config.php', 123 'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Driver.php', 124 'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Item.php', 125 'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Config.php', 126 'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Driver.php', 127 'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Item.php', 128 'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Config.php', 129 'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Driver.php', 130 'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Item.php', 131 'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Config.php', 132 'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Driver.php', 133 'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Item.php', 134 'WCPOS\Vendor\Phpfastcache\EventManager' => './phpfastcache/phpfastcache/lib/Phpfastcache/EventManager.php', 135 'WCPOS\Vendor\Phpfastcache\Entities\DriverStatistic' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/DriverStatistic.php', 136 'WCPOS\Vendor\Phpfastcache\Entities\ItemBatch' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/ItemBatch.php', 137 'WCPOS\Vendor\Phpfastcache\Entities\DriverIO' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/DriverIO.php', 138 'WCPOS\Vendor\Psr\SimpleCache\CacheInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/SimpleCache/src/CacheInterface.php', 138 'WCPOS\Vendor\Psr\Cache\InvalidArgumentException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/InvalidArgumentException.php', 139 'WCPOS\Vendor\Psr\Cache\CacheException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheException.php', 140 'WCPOS\Vendor\Psr\Cache\CacheItemInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheItemInterface.php', 141 'WCPOS\Vendor\Psr\Cache\CacheItemPoolInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheItemPoolInterface.php', 139 142 'WCPOS\Vendor\Psr\SimpleCache\InvalidArgumentException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/SimpleCache/src/InvalidArgumentException.php', 140 143 'WCPOS\Vendor\Psr\SimpleCache\CacheException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/SimpleCache/src/CacheException.php', 141 'WCPOS\Vendor\Psr\ Cache\CacheItemPoolInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheItemPoolInterface.php',142 'WCPOS\Vendor\ Psr\Cache\CacheItemInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheItemInterface.php',143 'WCPOS\Vendor\ Psr\Cache\InvalidArgumentException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/InvalidArgumentException.php',144 'WCPOS\Vendor\ Psr\Cache\CacheException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheException.php',144 'WCPOS\Vendor\Psr\SimpleCache\CacheInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/SimpleCache/src/CacheInterface.php', 145 'WCPOS\Vendor\Firebase\JWT\JWK' => './firebase/php-jwt/src/JWK.php', 146 'WCPOS\Vendor\Firebase\JWT\ExpiredException' => './firebase/php-jwt/src/ExpiredException.php', 147 'WCPOS\Vendor\Firebase\JWT\JWTExceptionWithPayloadInterface' => './firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php', 145 148 'WCPOS\Vendor\Firebase\JWT\CachedKeySet' => './firebase/php-jwt/src/CachedKeySet.php', 149 'WCPOS\Vendor\Firebase\JWT\Key' => './firebase/php-jwt/src/Key.php', 146 150 'WCPOS\Vendor\Firebase\JWT\JWT' => './firebase/php-jwt/src/JWT.php', 147 'WCPOS\Vendor\Firebase\JWT\ExpiredException' => './firebase/php-jwt/src/ExpiredException.php', 148 'WCPOS\Vendor\Firebase\JWT\JWK' => './firebase/php-jwt/src/JWK.php', 149 'WCPOS\Vendor\Firebase\JWT\Key' => './firebase/php-jwt/src/Key.php', 151 'WCPOS\Vendor\Firebase\JWT\BeforeValidException' => './firebase/php-jwt/src/BeforeValidException.php', 150 152 'WCPOS\Vendor\Firebase\JWT\SignatureInvalidException' => './firebase/php-jwt/src/SignatureInvalidException.php', 151 'WCPOS\Vendor\Firebase\JWT\BeforeValidException' => './firebase/php-jwt/src/BeforeValidException.php',152 'WCPOS\Vendor\Firebase\JWT\JWTExceptionWithPayloadInterface' => './firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php',153 153 ]; 154 154 -
woocommerce-pos/trunk/woocommerce-pos.php
r3104241 r3104911 4 4 * Plugin URI: https://wordpress.org/plugins/woocommerce-pos/ 5 5 * Description: A simple front-end for taking WooCommerce orders at the Point of Sale. Requires <a href="http://wordpress.org/plugins/woocommerce/">WooCommerce</a>. 6 * Version: 1.6. 16 * Version: 1.6.2 7 7 * Author: kilbot 8 8 * Author URI: http://wcpos.com … … 15 15 * Requires PHP: 7.4 16 16 * Requires Plugins: woocommerce 17 * WC tested up to: 8.917 * WC tested up to: 9.0 18 18 * WC requires at least: 5.3 19 19 * … … 25 25 26 26 // Define plugin constants. 27 const VERSION = '1.6. 1';27 const VERSION = '1.6.2'; 28 28 const PLUGIN_NAME = 'woocommerce-pos'; 29 29 const SHORT_NAME = 'wcpos'; … … 38 38 39 39 // Load .env flags (for development). 40 function load_env( $file ) {40 function wcpos_load_env( $file ) { 41 41 if ( ! file_exists( $file ) ) { 42 42 return; … … 76 76 77 77 // Environment variables. 78 load_env( __DIR__ . '/.env' );78 wcpos_load_env( __DIR__ . '/.env' ); 79 79 80 80 // Error handling for autoload failure.
Note: See TracChangeset
for help on using the changeset viewer.