Version Description
Download this release
Release Info
| Developer | psealock |
| Plugin | |
| Version | 0.26.1 |
| Comparing to | |
| See all releases | |
Code changes from version 0.26.0 to 0.26.1
- languages/woocommerce-admin.pot +2 -2
- src/FeaturePlugin.php +1 -1
- src/Package.php +38 -1
- vendor/autoload.php +1 -1
- vendor/autoload_packages.php +2 -2
- vendor/composer/autoload_classmap_package.php +135 -135
- vendor/composer/autoload_real.php +4 -4
- vendor/composer/autoload_static.php +3 -3
- woocommerce-admin.php +1 -1
languages/woocommerce-admin.pot
CHANGED
|
@@ -2,9 +2,9 @@
|
|
| 2 |
# This file is distributed under the same license as the WooCommerce Admin package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"Project-Id-Version: WooCommerce Admin 0.26.
|
| 6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-admin\n"
|
| 7 |
-
"POT-Creation-Date: 2020-02-
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=utf-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
| 2 |
# This file is distributed under the same license as the WooCommerce Admin package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: WooCommerce Admin 0.26.1\n"
|
| 6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-admin\n"
|
| 7 |
+
"POT-Creation-Date: 2020-02-25 20:49:09+00:00\n"
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=utf-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
src/FeaturePlugin.php
CHANGED
|
@@ -148,7 +148,7 @@ class FeaturePlugin {
|
|
| 148 |
$this->define( 'WC_ADMIN_PLUGIN_FILE', WC_ADMIN_ABSPATH . 'woocommerce-admin.php' );
|
| 149 |
// WARNING: Do not directly edit this version number constant.
|
| 150 |
// It is updated as part of the prebuild process from the package.json value.
|
| 151 |
-
$this->define( 'WC_ADMIN_VERSION_NUMBER', '0.26.
|
| 152 |
}
|
| 153 |
|
| 154 |
/**
|
| 148 |
$this->define( 'WC_ADMIN_PLUGIN_FILE', WC_ADMIN_ABSPATH . 'woocommerce-admin.php' );
|
| 149 |
// WARNING: Do not directly edit this version number constant.
|
| 150 |
// It is updated as part of the prebuild process from the package.json value.
|
| 151 |
+
$this->define( 'WC_ADMIN_VERSION_NUMBER', '0.26.1' );
|
| 152 |
}
|
| 153 |
|
| 154 |
/**
|
src/Package.php
CHANGED
|
@@ -26,7 +26,14 @@ class Package {
|
|
| 26 |
*
|
| 27 |
* @var string
|
| 28 |
*/
|
| 29 |
-
const VERSION = '0.26.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
|
| 31 |
/**
|
| 32 |
* Init the package.
|
|
@@ -53,9 +60,13 @@ class Package {
|
|
| 53 |
$update_version::delete_note();
|
| 54 |
}
|
| 55 |
|
|
|
|
|
|
|
|
|
|
| 56 |
return;
|
| 57 |
}
|
| 58 |
|
|
|
|
| 59 |
FeaturePlugin::instance()->init();
|
| 60 |
}
|
| 61 |
|
|
@@ -68,6 +79,24 @@ class Package {
|
|
| 68 |
return self::VERSION;
|
| 69 |
}
|
| 70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 71 |
/**
|
| 72 |
* Return the path to the package.
|
| 73 |
*
|
|
@@ -76,4 +105,12 @@ class Package {
|
|
| 76 |
public static function get_path() {
|
| 77 |
return dirname( __DIR__ );
|
| 78 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
}
|
| 26 |
*
|
| 27 |
* @var string
|
| 28 |
*/
|
| 29 |
+
const VERSION = '0.26.1';
|
| 30 |
+
|
| 31 |
+
/**
|
| 32 |
+
* Package active.
|
| 33 |
+
*
|
| 34 |
+
* @var bool
|
| 35 |
+
*/
|
| 36 |
+
private static $package_active = false;
|
| 37 |
|
| 38 |
/**
|
| 39 |
* Init the package.
|
| 60 |
$update_version::delete_note();
|
| 61 |
}
|
| 62 |
|
| 63 |
+
// Register a deactivation hook for the feature plugin.
|
| 64 |
+
register_deactivation_hook( WC_ADMIN_PLUGIN_FILE, array( __CLASS__, 'on_deactivation' ) );
|
| 65 |
+
|
| 66 |
return;
|
| 67 |
}
|
| 68 |
|
| 69 |
+
self::$package_active = true;
|
| 70 |
FeaturePlugin::instance()->init();
|
| 71 |
}
|
| 72 |
|
| 79 |
return self::VERSION;
|
| 80 |
}
|
| 81 |
|
| 82 |
+
/**
|
| 83 |
+
* Return the active version of WC Admin.
|
| 84 |
+
*
|
| 85 |
+
* @return string
|
| 86 |
+
*/
|
| 87 |
+
public static function get_active_version() {
|
| 88 |
+
return self::$package_active ? self::VERSION : WC_ADMIN_VERSION_NUMBER;
|
| 89 |
+
}
|
| 90 |
+
|
| 91 |
+
/**
|
| 92 |
+
* Return whether the package is active.
|
| 93 |
+
*
|
| 94 |
+
* @return bool
|
| 95 |
+
*/
|
| 96 |
+
public static function is_package_active() {
|
| 97 |
+
return self::$package_active;
|
| 98 |
+
}
|
| 99 |
+
|
| 100 |
/**
|
| 101 |
* Return the path to the package.
|
| 102 |
*
|
| 105 |
public static function get_path() {
|
| 106 |
return dirname( __DIR__ );
|
| 107 |
}
|
| 108 |
+
|
| 109 |
+
/**
|
| 110 |
+
* Add deactivation hook for versions of the plugin that don't have the deactivation note.
|
| 111 |
+
*/
|
| 112 |
+
public static function on_deactivation() {
|
| 113 |
+
$update_version = new WC_Admin_Notes_Deactivate_Plugin();
|
| 114 |
+
$update_version::delete_note();
|
| 115 |
+
}
|
| 116 |
}
|
vendor/autoload.php
CHANGED
|
@@ -4,4 +4,4 @@
|
|
| 4 |
|
| 5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 6 |
|
| 7 |
-
return
|
| 4 |
|
| 5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 6 |
|
| 7 |
+
return ComposerAutoloaderInitdd2436c4ff8a3c314f9689119401be49::getLoader();
|
vendor/autoload_packages.php
CHANGED
|
@@ -103,7 +103,7 @@ if ( ! function_exists( __NAMESPACE__ . '\autoloader' ) ) {
|
|
| 103 |
/**
|
| 104 |
* Prepare all the classes for autoloading.
|
| 105 |
*/
|
| 106 |
-
function
|
| 107 |
$class_map = require_once dirname( __FILE__ ) . '/composer/autoload_classmap_package.php';
|
| 108 |
foreach ( $class_map as $class_name => $class_info ) {
|
| 109 |
enqueue_package_class( $class_name, $class_info['version'], $class_info['path'] );
|
|
@@ -122,4 +122,4 @@ function enqueue_packages_42aa578361a4fd6eccca8a1d5b663230() {
|
|
| 122 |
}
|
| 123 |
}
|
| 124 |
}
|
| 125 |
-
|
| 103 |
/**
|
| 104 |
* Prepare all the classes for autoloading.
|
| 105 |
*/
|
| 106 |
+
function enqueue_packages_1b8e0e2c2d2ab7c8388699c5ab614e29() {
|
| 107 |
$class_map = require_once dirname( __FILE__ ) . '/composer/autoload_classmap_package.php';
|
| 108 |
foreach ( $class_map as $class_name => $class_info ) {
|
| 109 |
enqueue_package_class( $class_name, $class_info['version'], $class_info['path'] );
|
| 122 |
}
|
| 123 |
}
|
| 124 |
}
|
| 125 |
+
enqueue_packages_1b8e0e2c2d2ab7c8388699c5ab614e29();
|
vendor/composer/autoload_classmap_package.php
CHANGED
|
@@ -383,543 +383,543 @@ return array(
|
|
| 383 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MicroweberInstaller.php'
|
| 384 |
),
|
| 385 |
'Automattic\\WooCommerce\\Admin\\Overrides\\WPPostStore' => array(
|
| 386 |
-
'version' => 'dev-release/0.26.
|
| 387 |
'path' => $baseDir . '/src/Overrides/WPPostStore.php'
|
| 388 |
),
|
| 389 |
'Automattic\\WooCommerce\\Admin\\Overrides\\Order' => array(
|
| 390 |
-
'version' => 'dev-release/0.26.
|
| 391 |
'path' => $baseDir . '/src/Overrides/Order.php'
|
| 392 |
),
|
| 393 |
'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgrader' => array(
|
| 394 |
-
'version' => 'dev-release/0.26.
|
| 395 |
'path' => $baseDir . '/src/Overrides/ThemeUpgrader.php'
|
| 396 |
),
|
| 397 |
'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgraderSkin' => array(
|
| 398 |
-
'version' => 'dev-release/0.26.
|
| 399 |
'path' => $baseDir . '/src/Overrides/ThemeUpgraderSkin.php'
|
| 400 |
),
|
| 401 |
'Automattic\\WooCommerce\\Admin\\Overrides\\OrderTraits' => array(
|
| 402 |
-
'version' => 'dev-release/0.26.
|
| 403 |
'path' => $baseDir . '/src/Overrides/OrderTraits.php'
|
| 404 |
),
|
| 405 |
'Automattic\\WooCommerce\\Admin\\Overrides\\OrderRefund' => array(
|
| 406 |
-
'version' => 'dev-release/0.26.
|
| 407 |
'path' => $baseDir . '/src/Overrides/OrderRefund.php'
|
| 408 |
),
|
| 409 |
'Automattic\\WooCommerce\\Admin\\Loader' => array(
|
| 410 |
-
'version' => 'dev-release/0.26.
|
| 411 |
'path' => $baseDir . '/src/Loader.php'
|
| 412 |
),
|
| 413 |
'Automattic\\WooCommerce\\Admin\\ReportCSVEmail' => array(
|
| 414 |
-
'version' => 'dev-release/0.26.
|
| 415 |
'path' => $baseDir . '/src/ReportCSVEmail.php'
|
| 416 |
),
|
| 417 |
'Automattic\\WooCommerce\\Admin\\FeaturePlugin' => array(
|
| 418 |
-
'version' => 'dev-release/0.26.
|
| 419 |
'path' => $baseDir . '/src/FeaturePlugin.php'
|
| 420 |
),
|
| 421 |
'Automattic\\WooCommerce\\Admin\\ReportsSync' => array(
|
| 422 |
-
'version' => 'dev-release/0.26.
|
| 423 |
'path' => $baseDir . '/src/ReportsSync.php'
|
| 424 |
),
|
| 425 |
'Automattic\\WooCommerce\\Admin\\ReportCSVExporter' => array(
|
| 426 |
-
'version' => 'dev-release/0.26.
|
| 427 |
'path' => $baseDir . '/src/ReportCSVExporter.php'
|
| 428 |
),
|
| 429 |
'Automattic\\WooCommerce\\Admin\\Install' => array(
|
| 430 |
-
'version' => 'dev-release/0.26.
|
| 431 |
'path' => $baseDir . '/src/Install.php'
|
| 432 |
),
|
| 433 |
'Automattic\\WooCommerce\\Admin\\CategoryLookup' => array(
|
| 434 |
-
'version' => 'dev-release/0.26.
|
| 435 |
'path' => $baseDir . '/src/CategoryLookup.php'
|
| 436 |
),
|
| 437 |
'Automattic\\WooCommerce\\Admin\\Composer\\Package' => array(
|
| 438 |
-
'version' => 'dev-release/0.26.
|
| 439 |
'path' => $baseDir . '/src/Package.php'
|
| 440 |
),
|
| 441 |
'Automattic\\WooCommerce\\Admin\\ReportExporter' => array(
|
| 442 |
-
'version' => 'dev-release/0.26.
|
| 443 |
'path' => $baseDir . '/src/ReportExporter.php'
|
| 444 |
),
|
| 445 |
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks' => array(
|
| 446 |
-
'version' => 'dev-release/0.26.
|
| 447 |
'path' => $baseDir . '/src/Features/OnboardingTasks.php'
|
| 448 |
),
|
| 449 |
'Automattic\\WooCommerce\\Admin\\Features\\ActivityPanels' => array(
|
| 450 |
-
'version' => 'dev-release/0.26.
|
| 451 |
'path' => $baseDir . '/src/Features/ActivityPanels.php'
|
| 452 |
),
|
| 453 |
'Automattic\\WooCommerce\\Admin\\Features\\Onboarding' => array(
|
| 454 |
-
'version' => 'dev-release/0.26.
|
| 455 |
'path' => $baseDir . '/src/Features/Onboarding.php'
|
| 456 |
),
|
| 457 |
'Automattic\\WooCommerce\\Admin\\Features\\Analytics' => array(
|
| 458 |
-
'version' => 'dev-release/0.26.
|
| 459 |
'path' => $baseDir . '/src/Features/Analytics.php'
|
| 460 |
),
|
| 461 |
'Automattic\\WooCommerce\\Admin\\Features\\AnalyticsDashboard' => array(
|
| 462 |
-
'version' => 'dev-release/0.26.
|
| 463 |
'path' => $baseDir . '/src/Features/AnalyticsDashboard.php'
|
| 464 |
),
|
| 465 |
'Automattic\\WooCommerce\\Admin\\Events' => array(
|
| 466 |
-
'version' => 'dev-release/0.26.
|
| 467 |
'path' => $baseDir . '/src/Events.php'
|
| 468 |
),
|
| 469 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_New_Sales_Record' => array(
|
| 470 |
-
'version' => 'dev-release/0.26.
|
| 471 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_New_Sales_Record.php'
|
| 472 |
),
|
| 473 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Historical_Data' => array(
|
| 474 |
-
'version' => 'dev-release/0.26.
|
| 475 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Historical_Data.php'
|
| 476 |
),
|
| 477 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Tracking_Opt_In' => array(
|
| 478 |
-
'version' => 'dev-release/0.26.
|
| 479 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Tracking_Opt_In.php'
|
| 480 |
),
|
| 481 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Giving_Feedback_Notes' => array(
|
| 482 |
-
'version' => 'dev-release/0.26.
|
| 483 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Giving_Feedback_Notes.php'
|
| 484 |
),
|
| 485 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Order_Milestones' => array(
|
| 486 |
-
'version' => 'dev-release/0.26.
|
| 487 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Order_Milestones.php'
|
| 488 |
),
|
| 489 |
'Automattic\\WooCommerce\\Admin\\Notes\\DataStore' => array(
|
| 490 |
-
'version' => 'dev-release/0.26.
|
| 491 |
'path' => $baseDir . '/src/Notes/DataStore.php'
|
| 492 |
),
|
| 493 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Email_Marketing' => array(
|
| 494 |
-
'version' => 'dev-release/0.26.
|
| 495 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Onboarding_Email_Marketing.php'
|
| 496 |
),
|
| 497 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Profiler' => array(
|
| 498 |
-
'version' => 'dev-release/0.26.
|
| 499 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Onboarding_Profiler.php'
|
| 500 |
),
|
| 501 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Mobile_App' => array(
|
| 502 |
-
'version' => 'dev-release/0.26.
|
| 503 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Mobile_App.php'
|
| 504 |
),
|
| 505 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Woo_Subscriptions_Notes' => array(
|
| 506 |
-
'version' => 'dev-release/0.26.
|
| 507 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Woo_Subscriptions_Notes.php'
|
| 508 |
),
|
| 509 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Facebook_Extension' => array(
|
| 510 |
-
'version' => 'dev-release/0.26.
|
| 511 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Facebook_Extension.php'
|
| 512 |
),
|
| 513 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding' => array(
|
| 514 |
-
'version' => 'dev-release/0.26.
|
| 515 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Onboarding.php'
|
| 516 |
),
|
| 517 |
'Automattic\\WooCommerce\\Admin\\Notes\\NoteTraits' => array(
|
| 518 |
-
'version' => 'dev-release/0.26.
|
| 519 |
'path' => $baseDir . '/src/Notes/NoteTraits.php'
|
| 520 |
),
|
| 521 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Welcome_Message' => array(
|
| 522 |
-
'version' => 'dev-release/0.26.
|
| 523 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Welcome_Message.php'
|
| 524 |
),
|
| 525 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Settings_Notes' => array(
|
| 526 |
-
'version' => 'dev-release/0.26.
|
| 527 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Settings_Notes.php'
|
| 528 |
),
|
| 529 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Deactivate_Plugin' => array(
|
| 530 |
-
'version' => 'dev-release/0.26.
|
| 531 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Deactivate_Plugin.php'
|
| 532 |
),
|
| 533 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Add_First_Product' => array(
|
| 534 |
-
'version' => 'dev-release/0.26.
|
| 535 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Add_First_Product.php'
|
| 536 |
),
|
| 537 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes' => array(
|
| 538 |
-
'version' => 'dev-release/0.26.
|
| 539 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes.php'
|
| 540 |
),
|
| 541 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Note' => array(
|
| 542 |
-
'version' => 'dev-release/0.26.
|
| 543 |
'path' => $baseDir . '/src/Notes/WC_Admin_Note.php'
|
| 544 |
),
|
| 545 |
'Automattic\\WooCommerce\\Admin\\API\\Taxes' => array(
|
| 546 |
-
'version' => 'dev-release/0.26.
|
| 547 |
'path' => $baseDir . '/src/API/Taxes.php'
|
| 548 |
),
|
| 549 |
'Automattic\\WooCommerce\\Admin\\API\\ProductReviews' => array(
|
| 550 |
-
'version' => 'dev-release/0.26.
|
| 551 |
'path' => $baseDir . '/src/API/ProductReviews.php'
|
| 552 |
),
|
| 553 |
'Automattic\\WooCommerce\\Admin\\API\\Init' => array(
|
| 554 |
-
'version' => 'dev-release/0.26.
|
| 555 |
'path' => $baseDir . '/src/API/Init.php'
|
| 556 |
),
|
| 557 |
'Automattic\\WooCommerce\\Admin\\API\\OnboardingProfile' => array(
|
| 558 |
-
'version' => 'dev-release/0.26.
|
| 559 |
'path' => $baseDir . '/src/API/OnboardingProfile.php'
|
| 560 |
),
|
| 561 |
'Automattic\\WooCommerce\\Admin\\API\\OnboardingTasks' => array(
|
| 562 |
-
'version' => 'dev-release/0.26.
|
| 563 |
'path' => $baseDir . '/src/API/OnboardingTasks.php'
|
| 564 |
),
|
| 565 |
'Automattic\\WooCommerce\\Admin\\API\\DataDownloadIPs' => array(
|
| 566 |
-
'version' => 'dev-release/0.26.
|
| 567 |
'path' => $baseDir . '/src/API/DataDownloadIPs.php'
|
| 568 |
),
|
| 569 |
'Automattic\\WooCommerce\\Admin\\API\\Themes' => array(
|
| 570 |
-
'version' => 'dev-release/0.26.
|
| 571 |
'path' => $baseDir . '/src/API/Themes.php'
|
| 572 |
),
|
| 573 |
'Automattic\\WooCommerce\\Admin\\API\\SettingOptions' => array(
|
| 574 |
-
'version' => 'dev-release/0.26.
|
| 575 |
'path' => $baseDir . '/src/API/SettingOptions.php'
|
| 576 |
),
|
| 577 |
'Automattic\\WooCommerce\\Admin\\API\\NoteActions' => array(
|
| 578 |
-
'version' => 'dev-release/0.26.
|
| 579 |
'path' => $baseDir . '/src/API/NoteActions.php'
|
| 580 |
),
|
| 581 |
'Automattic\\WooCommerce\\Admin\\API\\Notes' => array(
|
| 582 |
-
'version' => 'dev-release/0.26.
|
| 583 |
'path' => $baseDir . '/src/API/Notes.php'
|
| 584 |
),
|
| 585 |
'Automattic\\WooCommerce\\Admin\\API\\Coupons' => array(
|
| 586 |
-
'version' => 'dev-release/0.26.
|
| 587 |
'path' => $baseDir . '/src/API/Coupons.php'
|
| 588 |
),
|
| 589 |
'Automattic\\WooCommerce\\Admin\\API\\ProductCategories' => array(
|
| 590 |
-
'version' => 'dev-release/0.26.
|
| 591 |
'path' => $baseDir . '/src/API/ProductCategories.php'
|
| 592 |
),
|
| 593 |
'Automattic\\WooCommerce\\Admin\\API\\ProductVariations' => array(
|
| 594 |
-
'version' => 'dev-release/0.26.
|
| 595 |
'path' => $baseDir . '/src/API/ProductVariations.php'
|
| 596 |
),
|
| 597 |
'Automattic\\WooCommerce\\Admin\\API\\Leaderboards' => array(
|
| 598 |
-
'version' => 'dev-release/0.26.
|
| 599 |
'path' => $baseDir . '/src/API/Leaderboards.php'
|
| 600 |
),
|
| 601 |
'Automattic\\WooCommerce\\Admin\\API\\Data' => array(
|
| 602 |
-
'version' => 'dev-release/0.26.
|
| 603 |
'path' => $baseDir . '/src/API/Data.php'
|
| 604 |
),
|
| 605 |
'Automattic\\WooCommerce\\Admin\\API\\Options' => array(
|
| 606 |
-
'version' => 'dev-release/0.26.
|
| 607 |
'path' => $baseDir . '/src/API/Options.php'
|
| 608 |
),
|
| 609 |
'Automattic\\WooCommerce\\Admin\\API\\OnboardingPlugins' => array(
|
| 610 |
-
'version' => 'dev-release/0.26.
|
| 611 |
'path' => $baseDir . '/src/API/OnboardingPlugins.php'
|
| 612 |
),
|
| 613 |
'Automattic\\WooCommerce\\Admin\\API\\Products' => array(
|
| 614 |
-
'version' => 'dev-release/0.26.
|
| 615 |
'path' => $baseDir . '/src/API/Products.php'
|
| 616 |
),
|
| 617 |
'Automattic\\WooCommerce\\Admin\\API\\Customers' => array(
|
| 618 |
-
'version' => 'dev-release/0.26.
|
| 619 |
'path' => $baseDir . '/src/API/Customers.php'
|
| 620 |
),
|
| 621 |
'Automattic\\WooCommerce\\Admin\\API\\OnboardingThemes' => array(
|
| 622 |
-
'version' => 'dev-release/0.26.
|
| 623 |
'path' => $baseDir . '/src/API/OnboardingThemes.php'
|
| 624 |
),
|
| 625 |
'Automattic\\WooCommerce\\Admin\\API\\DataCountries' => array(
|
| 626 |
-
'version' => 'dev-release/0.26.
|
| 627 |
'path' => $baseDir . '/src/API/DataCountries.php'
|
| 628 |
),
|
| 629 |
'Automattic\\WooCommerce\\Admin\\API\\Orders' => array(
|
| 630 |
-
'version' => 'dev-release/0.26.
|
| 631 |
'path' => $baseDir . '/src/API/Orders.php'
|
| 632 |
),
|
| 633 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Controller' => array(
|
| 634 |
-
'version' => 'dev-release/0.26.
|
| 635 |
'path' => $baseDir . '/src/API/Reports/Customers/Controller.php'
|
| 636 |
),
|
| 637 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\DataStore' => array(
|
| 638 |
-
'version' => 'dev-release/0.26.
|
| 639 |
'path' => $baseDir . '/src/API/Reports/Customers/DataStore.php'
|
| 640 |
),
|
| 641 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Query' => array(
|
| 642 |
-
'version' => 'dev-release/0.26.
|
| 643 |
'path' => $baseDir . '/src/API/Reports/Customers/Query.php'
|
| 644 |
),
|
| 645 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Controller' => array(
|
| 646 |
-
'version' => 'dev-release/0.26.
|
| 647 |
'path' => $baseDir . '/src/API/Reports/Customers/Stats/Controller.php'
|
| 648 |
),
|
| 649 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\DataStore' => array(
|
| 650 |
-
'version' => 'dev-release/0.26.
|
| 651 |
'path' => $baseDir . '/src/API/Reports/Customers/Stats/DataStore.php'
|
| 652 |
),
|
| 653 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Query' => array(
|
| 654 |
-
'version' => 'dev-release/0.26.
|
| 655 |
'path' => $baseDir . '/src/API/Reports/Customers/Stats/Query.php'
|
| 656 |
),
|
| 657 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStoreInterface' => array(
|
| 658 |
-
'version' => 'dev-release/0.26.
|
| 659 |
'path' => $baseDir . '/src/API/Reports/DataStoreInterface.php'
|
| 660 |
),
|
| 661 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Controller' => array(
|
| 662 |
-
'version' => 'dev-release/0.26.
|
| 663 |
'path' => $baseDir . '/src/API/Reports/Controller.php'
|
| 664 |
),
|
| 665 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Controller' => array(
|
| 666 |
-
'version' => 'dev-release/0.26.
|
| 667 |
'path' => $baseDir . '/src/API/Reports/Products/Controller.php'
|
| 668 |
),
|
| 669 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\DataStore' => array(
|
| 670 |
-
'version' => 'dev-release/0.26.
|
| 671 |
'path' => $baseDir . '/src/API/Reports/Products/DataStore.php'
|
| 672 |
),
|
| 673 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Query' => array(
|
| 674 |
-
'version' => 'dev-release/0.26.
|
| 675 |
'path' => $baseDir . '/src/API/Reports/Products/Query.php'
|
| 676 |
),
|
| 677 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Controller' => array(
|
| 678 |
-
'version' => 'dev-release/0.26.
|
| 679 |
'path' => $baseDir . '/src/API/Reports/Products/Stats/Controller.php'
|
| 680 |
),
|
| 681 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\DataStore' => array(
|
| 682 |
-
'version' => 'dev-release/0.26.
|
| 683 |
'path' => $baseDir . '/src/API/Reports/Products/Stats/DataStore.php'
|
| 684 |
),
|
| 685 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Segmenter' => array(
|
| 686 |
-
'version' => 'dev-release/0.26.
|
| 687 |
'path' => $baseDir . '/src/API/Reports/Products/Stats/Segmenter.php'
|
| 688 |
),
|
| 689 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Query' => array(
|
| 690 |
-
'version' => 'dev-release/0.26.
|
| 691 |
'path' => $baseDir . '/src/API/Reports/Products/Stats/Query.php'
|
| 692 |
),
|
| 693 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\TimeInterval' => array(
|
| 694 |
-
'version' => 'dev-release/0.26.
|
| 695 |
'path' => $baseDir . '/src/API/Reports/TimeInterval.php'
|
| 696 |
),
|
| 697 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableInterface' => array(
|
| 698 |
-
'version' => 'dev-release/0.26.
|
| 699 |
'path' => $baseDir . '/src/API/Reports/ExportableInterface.php'
|
| 700 |
),
|
| 701 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Cache' => array(
|
| 702 |
-
'version' => 'dev-release/0.26.
|
| 703 |
'path' => $baseDir . '/src/API/Reports/Cache.php'
|
| 704 |
),
|
| 705 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Controller' => array(
|
| 706 |
-
'version' => 'dev-release/0.26.
|
| 707 |
'path' => $baseDir . '/src/API/Reports/Variations/Controller.php'
|
| 708 |
),
|
| 709 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\DataStore' => array(
|
| 710 |
-
'version' => 'dev-release/0.26.
|
| 711 |
'path' => $baseDir . '/src/API/Reports/Variations/DataStore.php'
|
| 712 |
),
|
| 713 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Query' => array(
|
| 714 |
-
'version' => 'dev-release/0.26.
|
| 715 |
'path' => $baseDir . '/src/API/Reports/Variations/Query.php'
|
| 716 |
),
|
| 717 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStore' => array(
|
| 718 |
-
'version' => 'dev-release/0.26.
|
| 719 |
'path' => $baseDir . '/src/API/Reports/DataStore.php'
|
| 720 |
),
|
| 721 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableTraits' => array(
|
| 722 |
-
'version' => 'dev-release/0.26.
|
| 723 |
'path' => $baseDir . '/src/API/Reports/ExportableTraits.php'
|
| 724 |
),
|
| 725 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Controller' => array(
|
| 726 |
-
'version' => 'dev-release/0.26.
|
| 727 |
'path' => $baseDir . '/src/API/Reports/Coupons/Controller.php'
|
| 728 |
),
|
| 729 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\DataStore' => array(
|
| 730 |
-
'version' => 'dev-release/0.26.
|
| 731 |
'path' => $baseDir . '/src/API/Reports/Coupons/DataStore.php'
|
| 732 |
),
|
| 733 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Query' => array(
|
| 734 |
-
'version' => 'dev-release/0.26.
|
| 735 |
'path' => $baseDir . '/src/API/Reports/Coupons/Query.php'
|
| 736 |
),
|
| 737 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Controller' => array(
|
| 738 |
-
'version' => 'dev-release/0.26.
|
| 739 |
'path' => $baseDir . '/src/API/Reports/Coupons/Stats/Controller.php'
|
| 740 |
),
|
| 741 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\DataStore' => array(
|
| 742 |
-
'version' => 'dev-release/0.26.
|
| 743 |
'path' => $baseDir . '/src/API/Reports/Coupons/Stats/DataStore.php'
|
| 744 |
),
|
| 745 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Segmenter' => array(
|
| 746 |
-
'version' => 'dev-release/0.26.
|
| 747 |
'path' => $baseDir . '/src/API/Reports/Coupons/Stats/Segmenter.php'
|
| 748 |
),
|
| 749 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Query' => array(
|
| 750 |
-
'version' => 'dev-release/0.26.
|
| 751 |
'path' => $baseDir . '/src/API/Reports/Coupons/Stats/Query.php'
|
| 752 |
),
|
| 753 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\ParameterException' => array(
|
| 754 |
-
'version' => 'dev-release/0.26.
|
| 755 |
'path' => $baseDir . '/src/API/Reports/ParameterException.php'
|
| 756 |
),
|
| 757 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Segmenter' => array(
|
| 758 |
-
'version' => 'dev-release/0.26.
|
| 759 |
'path' => $baseDir . '/src/API/Reports/Segmenter.php'
|
| 760 |
),
|
| 761 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Controller' => array(
|
| 762 |
-
'version' => 'dev-release/0.26.
|
| 763 |
'path' => $baseDir . '/src/API/Reports/Taxes/Controller.php'
|
| 764 |
),
|
| 765 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\DataStore' => array(
|
| 766 |
-
'version' => 'dev-release/0.26.
|
| 767 |
'path' => $baseDir . '/src/API/Reports/Taxes/DataStore.php'
|
| 768 |
),
|
| 769 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Query' => array(
|
| 770 |
-
'version' => 'dev-release/0.26.
|
| 771 |
'path' => $baseDir . '/src/API/Reports/Taxes/Query.php'
|
| 772 |
),
|
| 773 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Controller' => array(
|
| 774 |
-
'version' => 'dev-release/0.26.
|
| 775 |
'path' => $baseDir . '/src/API/Reports/Taxes/Stats/Controller.php'
|
| 776 |
),
|
| 777 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\DataStore' => array(
|
| 778 |
-
'version' => 'dev-release/0.26.
|
| 779 |
'path' => $baseDir . '/src/API/Reports/Taxes/Stats/DataStore.php'
|
| 780 |
),
|
| 781 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Segmenter' => array(
|
| 782 |
-
'version' => 'dev-release/0.26.
|
| 783 |
'path' => $baseDir . '/src/API/Reports/Taxes/Stats/Segmenter.php'
|
| 784 |
),
|
| 785 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Query' => array(
|
| 786 |
-
'version' => 'dev-release/0.26.
|
| 787 |
'path' => $baseDir . '/src/API/Reports/Taxes/Stats/Query.php'
|
| 788 |
),
|
| 789 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\PerformanceIndicators\\Controller' => array(
|
| 790 |
-
'version' => 'dev-release/0.26.
|
| 791 |
'path' => $baseDir . '/src/API/Reports/PerformanceIndicators/Controller.php'
|
| 792 |
),
|
| 793 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Query' => array(
|
| 794 |
-
'version' => 'dev-release/0.26.
|
| 795 |
'path' => $baseDir . '/src/API/Reports/Query.php'
|
| 796 |
),
|
| 797 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Controller' => array(
|
| 798 |
-
'version' => 'dev-release/0.26.
|
| 799 |
'path' => $baseDir . '/src/API/Reports/Orders/Controller.php'
|
| 800 |
),
|
| 801 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\DataStore' => array(
|
| 802 |
-
'version' => 'dev-release/0.26.
|
| 803 |
'path' => $baseDir . '/src/API/Reports/Orders/DataStore.php'
|
| 804 |
),
|
| 805 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Query' => array(
|
| 806 |
-
'version' => 'dev-release/0.26.
|
| 807 |
'path' => $baseDir . '/src/API/Reports/Orders/Query.php'
|
| 808 |
),
|
| 809 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Controller' => array(
|
| 810 |
-
'version' => 'dev-release/0.26.
|
| 811 |
'path' => $baseDir . '/src/API/Reports/Orders/Stats/Controller.php'
|
| 812 |
),
|
| 813 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\DataStore' => array(
|
| 814 |
-
'version' => 'dev-release/0.26.
|
| 815 |
'path' => $baseDir . '/src/API/Reports/Orders/Stats/DataStore.php'
|
| 816 |
),
|
| 817 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Segmenter' => array(
|
| 818 |
-
'version' => 'dev-release/0.26.
|
| 819 |
'path' => $baseDir . '/src/API/Reports/Orders/Stats/Segmenter.php'
|
| 820 |
),
|
| 821 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Query' => array(
|
| 822 |
-
'version' => 'dev-release/0.26.
|
| 823 |
'path' => $baseDir . '/src/API/Reports/Orders/Stats/Query.php'
|
| 824 |
),
|
| 825 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Export\\Controller' => array(
|
| 826 |
-
'version' => 'dev-release/0.26.
|
| 827 |
'path' => $baseDir . '/src/API/Reports/Export/Controller.php'
|
| 828 |
),
|
| 829 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Controller' => array(
|
| 830 |
-
'version' => 'dev-release/0.26.
|
| 831 |
'path' => $baseDir . '/src/API/Reports/Stock/Controller.php'
|
| 832 |
),
|
| 833 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Controller' => array(
|
| 834 |
-
'version' => 'dev-release/0.26.
|
| 835 |
'path' => $baseDir . '/src/API/Reports/Stock/Stats/Controller.php'
|
| 836 |
),
|
| 837 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\DataStore' => array(
|
| 838 |
-
'version' => 'dev-release/0.26.
|
| 839 |
'path' => $baseDir . '/src/API/Reports/Stock/Stats/DataStore.php'
|
| 840 |
),
|
| 841 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Query' => array(
|
| 842 |
-
'version' => 'dev-release/0.26.
|
| 843 |
'path' => $baseDir . '/src/API/Reports/Stock/Stats/Query.php'
|
| 844 |
),
|
| 845 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Query' => array(
|
| 846 |
-
'version' => 'dev-release/0.26.
|
| 847 |
'path' => $baseDir . '/src/API/Reports/Revenue/Query.php'
|
| 848 |
),
|
| 849 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Stats\\Controller' => array(
|
| 850 |
-
'version' => 'dev-release/0.26.
|
| 851 |
'path' => $baseDir . '/src/API/Reports/Revenue/Stats/Controller.php'
|
| 852 |
),
|
| 853 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Import\\Controller' => array(
|
| 854 |
-
'version' => 'dev-release/0.26.
|
| 855 |
'path' => $baseDir . '/src/API/Reports/Import/Controller.php'
|
| 856 |
),
|
| 857 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Controller' => array(
|
| 858 |
-
'version' => 'dev-release/0.26.
|
| 859 |
'path' => $baseDir . '/src/API/Reports/Downloads/Controller.php'
|
| 860 |
),
|
| 861 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\DataStore' => array(
|
| 862 |
-
'version' => 'dev-release/0.26.
|
| 863 |
'path' => $baseDir . '/src/API/Reports/Downloads/DataStore.php'
|
| 864 |
),
|
| 865 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Files\\Controller' => array(
|
| 866 |
-
'version' => 'dev-release/0.26.
|
| 867 |
'path' => $baseDir . '/src/API/Reports/Downloads/Files/Controller.php'
|
| 868 |
),
|
| 869 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Query' => array(
|
| 870 |
-
'version' => 'dev-release/0.26.
|
| 871 |
'path' => $baseDir . '/src/API/Reports/Downloads/Query.php'
|
| 872 |
),
|
| 873 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Controller' => array(
|
| 874 |
-
'version' => 'dev-release/0.26.
|
| 875 |
'path' => $baseDir . '/src/API/Reports/Downloads/Stats/Controller.php'
|
| 876 |
),
|
| 877 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\DataStore' => array(
|
| 878 |
-
'version' => 'dev-release/0.26.
|
| 879 |
'path' => $baseDir . '/src/API/Reports/Downloads/Stats/DataStore.php'
|
| 880 |
),
|
| 881 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Query' => array(
|
| 882 |
-
'version' => 'dev-release/0.26.
|
| 883 |
'path' => $baseDir . '/src/API/Reports/Downloads/Stats/Query.php'
|
| 884 |
),
|
| 885 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Controller' => array(
|
| 886 |
-
'version' => 'dev-release/0.26.
|
| 887 |
'path' => $baseDir . '/src/API/Reports/Categories/Controller.php'
|
| 888 |
),
|
| 889 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\DataStore' => array(
|
| 890 |
-
'version' => 'dev-release/0.26.
|
| 891 |
'path' => $baseDir . '/src/API/Reports/Categories/DataStore.php'
|
| 892 |
),
|
| 893 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Query' => array(
|
| 894 |
-
'version' => 'dev-release/0.26.
|
| 895 |
'path' => $baseDir . '/src/API/Reports/Categories/Query.php'
|
| 896 |
),
|
| 897 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\SqlQuery' => array(
|
| 898 |
-
'version' => 'dev-release/0.26.
|
| 899 |
'path' => $baseDir . '/src/API/Reports/SqlQuery.php'
|
| 900 |
),
|
| 901 |
'Automattic\\WooCommerce\\Admin\\PageController' => array(
|
| 902 |
-
'version' => 'dev-release/0.26.
|
| 903 |
'path' => $baseDir . '/src/PageController.php'
|
| 904 |
),
|
| 905 |
'Automattic\\WooCommerce\\Admin\\Schedulers\\ImportScheduler' => array(
|
| 906 |
-
'version' => 'dev-release/0.26.
|
| 907 |
'path' => $baseDir . '/src/Schedulers/ImportScheduler.php'
|
| 908 |
),
|
| 909 |
'Automattic\\WooCommerce\\Admin\\Schedulers\\OrdersScheduler' => array(
|
| 910 |
-
'version' => 'dev-release/0.26.
|
| 911 |
'path' => $baseDir . '/src/Schedulers/OrdersScheduler.php'
|
| 912 |
),
|
| 913 |
'Automattic\\WooCommerce\\Admin\\Schedulers\\SchedulerTraits' => array(
|
| 914 |
-
'version' => 'dev-release/0.26.
|
| 915 |
'path' => $baseDir . '/src/Schedulers/SchedulerTraits.php'
|
| 916 |
),
|
| 917 |
'Automattic\\WooCommerce\\Admin\\Schedulers\\ImportInterface' => array(
|
| 918 |
-
'version' => 'dev-release/0.26.
|
| 919 |
'path' => $baseDir . '/src/Schedulers/ImportInterface.php'
|
| 920 |
),
|
| 921 |
'Automattic\\WooCommerce\\Admin\\Schedulers\\CustomersScheduler' => array(
|
| 922 |
-
'version' => 'dev-release/0.26.
|
| 923 |
'path' => $baseDir . '/src/Schedulers/CustomersScheduler.php'
|
| 924 |
),
|
| 925 |
'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
|
| 383 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MicroweberInstaller.php'
|
| 384 |
),
|
| 385 |
'Automattic\\WooCommerce\\Admin\\Overrides\\WPPostStore' => array(
|
| 386 |
+
'version' => 'dev-release/0.26.1',
|
| 387 |
'path' => $baseDir . '/src/Overrides/WPPostStore.php'
|
| 388 |
),
|
| 389 |
'Automattic\\WooCommerce\\Admin\\Overrides\\Order' => array(
|
| 390 |
+
'version' => 'dev-release/0.26.1',
|
| 391 |
'path' => $baseDir . '/src/Overrides/Order.php'
|
| 392 |
),
|
| 393 |
'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgrader' => array(
|
| 394 |
+
'version' => 'dev-release/0.26.1',
|
| 395 |
'path' => $baseDir . '/src/Overrides/ThemeUpgrader.php'
|
| 396 |
),
|
| 397 |
'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgraderSkin' => array(
|
| 398 |
+
'version' => 'dev-release/0.26.1',
|
| 399 |
'path' => $baseDir . '/src/Overrides/ThemeUpgraderSkin.php'
|
| 400 |
),
|
| 401 |
'Automattic\\WooCommerce\\Admin\\Overrides\\OrderTraits' => array(
|
| 402 |
+
'version' => 'dev-release/0.26.1',
|
| 403 |
'path' => $baseDir . '/src/Overrides/OrderTraits.php'
|
| 404 |
),
|
| 405 |
'Automattic\\WooCommerce\\Admin\\Overrides\\OrderRefund' => array(
|
| 406 |
+
'version' => 'dev-release/0.26.1',
|
| 407 |
'path' => $baseDir . '/src/Overrides/OrderRefund.php'
|
| 408 |
),
|
| 409 |
'Automattic\\WooCommerce\\Admin\\Loader' => array(
|
| 410 |
+
'version' => 'dev-release/0.26.1',
|
| 411 |
'path' => $baseDir . '/src/Loader.php'
|
| 412 |
),
|
| 413 |
'Automattic\\WooCommerce\\Admin\\ReportCSVEmail' => array(
|
| 414 |
+
'version' => 'dev-release/0.26.1',
|
| 415 |
'path' => $baseDir . '/src/ReportCSVEmail.php'
|
| 416 |
),
|
| 417 |
'Automattic\\WooCommerce\\Admin\\FeaturePlugin' => array(
|
| 418 |
+
'version' => 'dev-release/0.26.1',
|
| 419 |
'path' => $baseDir . '/src/FeaturePlugin.php'
|
| 420 |
),
|
| 421 |
'Automattic\\WooCommerce\\Admin\\ReportsSync' => array(
|
| 422 |
+
'version' => 'dev-release/0.26.1',
|
| 423 |
'path' => $baseDir . '/src/ReportsSync.php'
|
| 424 |
),
|
| 425 |
'Automattic\\WooCommerce\\Admin\\ReportCSVExporter' => array(
|
| 426 |
+
'version' => 'dev-release/0.26.1',
|
| 427 |
'path' => $baseDir . '/src/ReportCSVExporter.php'
|
| 428 |
),
|
| 429 |
'Automattic\\WooCommerce\\Admin\\Install' => array(
|
| 430 |
+
'version' => 'dev-release/0.26.1',
|
| 431 |
'path' => $baseDir . '/src/Install.php'
|
| 432 |
),
|
| 433 |
'Automattic\\WooCommerce\\Admin\\CategoryLookup' => array(
|
| 434 |
+
'version' => 'dev-release/0.26.1',
|
| 435 |
'path' => $baseDir . '/src/CategoryLookup.php'
|
| 436 |
),
|
| 437 |
'Automattic\\WooCommerce\\Admin\\Composer\\Package' => array(
|
| 438 |
+
'version' => 'dev-release/0.26.1',
|
| 439 |
'path' => $baseDir . '/src/Package.php'
|
| 440 |
),
|
| 441 |
'Automattic\\WooCommerce\\Admin\\ReportExporter' => array(
|
| 442 |
+
'version' => 'dev-release/0.26.1',
|
| 443 |
'path' => $baseDir . '/src/ReportExporter.php'
|
| 444 |
),
|
| 445 |
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks' => array(
|
| 446 |
+
'version' => 'dev-release/0.26.1',
|
| 447 |
'path' => $baseDir . '/src/Features/OnboardingTasks.php'
|
| 448 |
),
|
| 449 |
'Automattic\\WooCommerce\\Admin\\Features\\ActivityPanels' => array(
|
| 450 |
+
'version' => 'dev-release/0.26.1',
|
| 451 |
'path' => $baseDir . '/src/Features/ActivityPanels.php'
|
| 452 |
),
|
| 453 |
'Automattic\\WooCommerce\\Admin\\Features\\Onboarding' => array(
|
| 454 |
+
'version' => 'dev-release/0.26.1',
|
| 455 |
'path' => $baseDir . '/src/Features/Onboarding.php'
|
| 456 |
),
|
| 457 |
'Automattic\\WooCommerce\\Admin\\Features\\Analytics' => array(
|
| 458 |
+
'version' => 'dev-release/0.26.1',
|
| 459 |
'path' => $baseDir . '/src/Features/Analytics.php'
|
| 460 |
),
|
| 461 |
'Automattic\\WooCommerce\\Admin\\Features\\AnalyticsDashboard' => array(
|
| 462 |
+
'version' => 'dev-release/0.26.1',
|
| 463 |
'path' => $baseDir . '/src/Features/AnalyticsDashboard.php'
|
| 464 |
),
|
| 465 |
'Automattic\\WooCommerce\\Admin\\Events' => array(
|
| 466 |
+
'version' => 'dev-release/0.26.1',
|
| 467 |
'path' => $baseDir . '/src/Events.php'
|
| 468 |
),
|
| 469 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_New_Sales_Record' => array(
|
| 470 |
+
'version' => 'dev-release/0.26.1',
|
| 471 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_New_Sales_Record.php'
|
| 472 |
),
|
| 473 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Historical_Data' => array(
|
| 474 |
+
'version' => 'dev-release/0.26.1',
|
| 475 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Historical_Data.php'
|
| 476 |
),
|
| 477 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Tracking_Opt_In' => array(
|
| 478 |
+
'version' => 'dev-release/0.26.1',
|
| 479 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Tracking_Opt_In.php'
|
| 480 |
),
|
| 481 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Giving_Feedback_Notes' => array(
|
| 482 |
+
'version' => 'dev-release/0.26.1',
|
| 483 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Giving_Feedback_Notes.php'
|
| 484 |
),
|
| 485 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Order_Milestones' => array(
|
| 486 |
+
'version' => 'dev-release/0.26.1',
|
| 487 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Order_Milestones.php'
|
| 488 |
),
|
| 489 |
'Automattic\\WooCommerce\\Admin\\Notes\\DataStore' => array(
|
| 490 |
+
'version' => 'dev-release/0.26.1',
|
| 491 |
'path' => $baseDir . '/src/Notes/DataStore.php'
|
| 492 |
),
|
| 493 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Email_Marketing' => array(
|
| 494 |
+
'version' => 'dev-release/0.26.1',
|
| 495 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Onboarding_Email_Marketing.php'
|
| 496 |
),
|
| 497 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Profiler' => array(
|
| 498 |
+
'version' => 'dev-release/0.26.1',
|
| 499 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Onboarding_Profiler.php'
|
| 500 |
),
|
| 501 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Mobile_App' => array(
|
| 502 |
+
'version' => 'dev-release/0.26.1',
|
| 503 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Mobile_App.php'
|
| 504 |
),
|
| 505 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Woo_Subscriptions_Notes' => array(
|
| 506 |
+
'version' => 'dev-release/0.26.1',
|
| 507 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Woo_Subscriptions_Notes.php'
|
| 508 |
),
|
| 509 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Facebook_Extension' => array(
|
| 510 |
+
'version' => 'dev-release/0.26.1',
|
| 511 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Facebook_Extension.php'
|
| 512 |
),
|
| 513 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding' => array(
|
| 514 |
+
'version' => 'dev-release/0.26.1',
|
| 515 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Onboarding.php'
|
| 516 |
),
|
| 517 |
'Automattic\\WooCommerce\\Admin\\Notes\\NoteTraits' => array(
|
| 518 |
+
'version' => 'dev-release/0.26.1',
|
| 519 |
'path' => $baseDir . '/src/Notes/NoteTraits.php'
|
| 520 |
),
|
| 521 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Welcome_Message' => array(
|
| 522 |
+
'version' => 'dev-release/0.26.1',
|
| 523 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Welcome_Message.php'
|
| 524 |
),
|
| 525 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Settings_Notes' => array(
|
| 526 |
+
'version' => 'dev-release/0.26.1',
|
| 527 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Settings_Notes.php'
|
| 528 |
),
|
| 529 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Deactivate_Plugin' => array(
|
| 530 |
+
'version' => 'dev-release/0.26.1',
|
| 531 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Deactivate_Plugin.php'
|
| 532 |
),
|
| 533 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Add_First_Product' => array(
|
| 534 |
+
'version' => 'dev-release/0.26.1',
|
| 535 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Add_First_Product.php'
|
| 536 |
),
|
| 537 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes' => array(
|
| 538 |
+
'version' => 'dev-release/0.26.1',
|
| 539 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes.php'
|
| 540 |
),
|
| 541 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Note' => array(
|
| 542 |
+
'version' => 'dev-release/0.26.1',
|
| 543 |
'path' => $baseDir . '/src/Notes/WC_Admin_Note.php'
|
| 544 |
),
|
| 545 |
'Automattic\\WooCommerce\\Admin\\API\\Taxes' => array(
|
| 546 |
+
'version' => 'dev-release/0.26.1',
|
| 547 |
'path' => $baseDir . '/src/API/Taxes.php'
|
| 548 |
),
|
| 549 |
'Automattic\\WooCommerce\\Admin\\API\\ProductReviews' => array(
|
| 550 |
+
'version' => 'dev-release/0.26.1',
|
| 551 |
'path' => $baseDir . '/src/API/ProductReviews.php'
|
| 552 |
),
|
| 553 |
'Automattic\\WooCommerce\\Admin\\API\\Init' => array(
|
| 554 |
+
'version' => 'dev-release/0.26.1',
|
| 555 |
'path' => $baseDir . '/src/API/Init.php'
|
| 556 |
),
|
| 557 |
'Automattic\\WooCommerce\\Admin\\API\\OnboardingProfile' => array(
|
| 558 |
+
'version' => 'dev-release/0.26.1',
|
| 559 |
'path' => $baseDir . '/src/API/OnboardingProfile.php'
|
| 560 |
),
|
| 561 |
'Automattic\\WooCommerce\\Admin\\API\\OnboardingTasks' => array(
|
| 562 |
+
'version' => 'dev-release/0.26.1',
|
| 563 |
'path' => $baseDir . '/src/API/OnboardingTasks.php'
|
| 564 |
),
|
| 565 |
'Automattic\\WooCommerce\\Admin\\API\\DataDownloadIPs' => array(
|
| 566 |
+
'version' => 'dev-release/0.26.1',
|
| 567 |
'path' => $baseDir . '/src/API/DataDownloadIPs.php'
|
| 568 |
),
|
| 569 |
'Automattic\\WooCommerce\\Admin\\API\\Themes' => array(
|
| 570 |
+
'version' => 'dev-release/0.26.1',
|
| 571 |
'path' => $baseDir . '/src/API/Themes.php'
|
| 572 |
),
|
| 573 |
'Automattic\\WooCommerce\\Admin\\API\\SettingOptions' => array(
|
| 574 |
+
'version' => 'dev-release/0.26.1',
|
| 575 |
'path' => $baseDir . '/src/API/SettingOptions.php'
|
| 576 |
),
|
| 577 |
'Automattic\\WooCommerce\\Admin\\API\\NoteActions' => array(
|
| 578 |
+
'version' => 'dev-release/0.26.1',
|
| 579 |
'path' => $baseDir . '/src/API/NoteActions.php'
|
| 580 |
),
|
| 581 |
'Automattic\\WooCommerce\\Admin\\API\\Notes' => array(
|
| 582 |
+
'version' => 'dev-release/0.26.1',
|
| 583 |
'path' => $baseDir . '/src/API/Notes.php'
|
| 584 |
),
|
| 585 |
'Automattic\\WooCommerce\\Admin\\API\\Coupons' => array(
|
| 586 |
+
'version' => 'dev-release/0.26.1',
|
| 587 |
'path' => $baseDir . '/src/API/Coupons.php'
|
| 588 |
),
|
| 589 |
'Automattic\\WooCommerce\\Admin\\API\\ProductCategories' => array(
|
| 590 |
+
'version' => 'dev-release/0.26.1',
|
| 591 |
'path' => $baseDir . '/src/API/ProductCategories.php'
|
| 592 |
),
|
| 593 |
'Automattic\\WooCommerce\\Admin\\API\\ProductVariations' => array(
|
| 594 |
+
'version' => 'dev-release/0.26.1',
|
| 595 |
'path' => $baseDir . '/src/API/ProductVariations.php'
|
| 596 |
),
|
| 597 |
'Automattic\\WooCommerce\\Admin\\API\\Leaderboards' => array(
|
| 598 |
+
'version' => 'dev-release/0.26.1',
|
| 599 |
'path' => $baseDir . '/src/API/Leaderboards.php'
|
| 600 |
),
|
| 601 |
'Automattic\\WooCommerce\\Admin\\API\\Data' => array(
|
| 602 |
+
'version' => 'dev-release/0.26.1',
|
| 603 |
'path' => $baseDir . '/src/API/Data.php'
|
| 604 |
),
|
| 605 |
'Automattic\\WooCommerce\\Admin\\API\\Options' => array(
|
| 606 |
+
'version' => 'dev-release/0.26.1',
|
| 607 |
'path' => $baseDir . '/src/API/Options.php'
|
| 608 |
),
|
| 609 |
'Automattic\\WooCommerce\\Admin\\API\\OnboardingPlugins' => array(
|
| 610 |
+
'version' => 'dev-release/0.26.1',
|
| 611 |
'path' => $baseDir . '/src/API/OnboardingPlugins.php'
|
| 612 |
),
|
| 613 |
'Automattic\\WooCommerce\\Admin\\API\\Products' => array(
|
| 614 |
+
'version' => 'dev-release/0.26.1',
|
| 615 |
'path' => $baseDir . '/src/API/Products.php'
|
| 616 |
),
|
| 617 |
'Automattic\\WooCommerce\\Admin\\API\\Customers' => array(
|
| 618 |
+
'version' => 'dev-release/0.26.1',
|
| 619 |
'path' => $baseDir . '/src/API/Customers.php'
|
| 620 |
),
|
| 621 |
'Automattic\\WooCommerce\\Admin\\API\\OnboardingThemes' => array(
|
| 622 |
+
'version' => 'dev-release/0.26.1',
|
| 623 |
'path' => $baseDir . '/src/API/OnboardingThemes.php'
|
| 624 |
),
|
| 625 |
'Automattic\\WooCommerce\\Admin\\API\\DataCountries' => array(
|
| 626 |
+
'version' => 'dev-release/0.26.1',
|
| 627 |
'path' => $baseDir . '/src/API/DataCountries.php'
|
| 628 |
),
|
| 629 |
'Automattic\\WooCommerce\\Admin\\API\\Orders' => array(
|
| 630 |
+
'version' => 'dev-release/0.26.1',
|
| 631 |
'path' => $baseDir . '/src/API/Orders.php'
|
| 632 |
),
|
| 633 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Controller' => array(
|
| 634 |
+
'version' => 'dev-release/0.26.1',
|
| 635 |
'path' => $baseDir . '/src/API/Reports/Customers/Controller.php'
|
| 636 |
),
|
| 637 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\DataStore' => array(
|
| 638 |
+
'version' => 'dev-release/0.26.1',
|
| 639 |
'path' => $baseDir . '/src/API/Reports/Customers/DataStore.php'
|
| 640 |
),
|
| 641 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Query' => array(
|
| 642 |
+
'version' => 'dev-release/0.26.1',
|
| 643 |
'path' => $baseDir . '/src/API/Reports/Customers/Query.php'
|
| 644 |
),
|
| 645 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Controller' => array(
|
| 646 |
+
'version' => 'dev-release/0.26.1',
|
| 647 |
'path' => $baseDir . '/src/API/Reports/Customers/Stats/Controller.php'
|
| 648 |
),
|
| 649 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\DataStore' => array(
|
| 650 |
+
'version' => 'dev-release/0.26.1',
|
| 651 |
'path' => $baseDir . '/src/API/Reports/Customers/Stats/DataStore.php'
|
| 652 |
),
|
| 653 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Query' => array(
|
| 654 |
+
'version' => 'dev-release/0.26.1',
|
| 655 |
'path' => $baseDir . '/src/API/Reports/Customers/Stats/Query.php'
|
| 656 |
),
|
| 657 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStoreInterface' => array(
|
| 658 |
+
'version' => 'dev-release/0.26.1',
|
| 659 |
'path' => $baseDir . '/src/API/Reports/DataStoreInterface.php'
|
| 660 |
),
|
| 661 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Controller' => array(
|
| 662 |
+
'version' => 'dev-release/0.26.1',
|
| 663 |
'path' => $baseDir . '/src/API/Reports/Controller.php'
|
| 664 |
),
|
| 665 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Controller' => array(
|
| 666 |
+
'version' => 'dev-release/0.26.1',
|
| 667 |
'path' => $baseDir . '/src/API/Reports/Products/Controller.php'
|
| 668 |
),
|
| 669 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\DataStore' => array(
|
| 670 |
+
'version' => 'dev-release/0.26.1',
|
| 671 |
'path' => $baseDir . '/src/API/Reports/Products/DataStore.php'
|
| 672 |
),
|
| 673 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Query' => array(
|
| 674 |
+
'version' => 'dev-release/0.26.1',
|
| 675 |
'path' => $baseDir . '/src/API/Reports/Products/Query.php'
|
| 676 |
),
|
| 677 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Controller' => array(
|
| 678 |
+
'version' => 'dev-release/0.26.1',
|
| 679 |
'path' => $baseDir . '/src/API/Reports/Products/Stats/Controller.php'
|
| 680 |
),
|
| 681 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\DataStore' => array(
|
| 682 |
+
'version' => 'dev-release/0.26.1',
|
| 683 |
'path' => $baseDir . '/src/API/Reports/Products/Stats/DataStore.php'
|
| 684 |
),
|
| 685 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Segmenter' => array(
|
| 686 |
+
'version' => 'dev-release/0.26.1',
|
| 687 |
'path' => $baseDir . '/src/API/Reports/Products/Stats/Segmenter.php'
|
| 688 |
),
|
| 689 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Query' => array(
|
| 690 |
+
'version' => 'dev-release/0.26.1',
|
| 691 |
'path' => $baseDir . '/src/API/Reports/Products/Stats/Query.php'
|
| 692 |
),
|
| 693 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\TimeInterval' => array(
|
| 694 |
+
'version' => 'dev-release/0.26.1',
|
| 695 |
'path' => $baseDir . '/src/API/Reports/TimeInterval.php'
|
| 696 |
),
|
| 697 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableInterface' => array(
|
| 698 |
+
'version' => 'dev-release/0.26.1',
|
| 699 |
'path' => $baseDir . '/src/API/Reports/ExportableInterface.php'
|
| 700 |
),
|
| 701 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Cache' => array(
|
| 702 |
+
'version' => 'dev-release/0.26.1',
|
| 703 |
'path' => $baseDir . '/src/API/Reports/Cache.php'
|
| 704 |
),
|
| 705 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Controller' => array(
|
| 706 |
+
'version' => 'dev-release/0.26.1',
|
| 707 |
'path' => $baseDir . '/src/API/Reports/Variations/Controller.php'
|
| 708 |
),
|
| 709 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\DataStore' => array(
|
| 710 |
+
'version' => 'dev-release/0.26.1',
|
| 711 |
'path' => $baseDir . '/src/API/Reports/Variations/DataStore.php'
|
| 712 |
),
|
| 713 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Query' => array(
|
| 714 |
+
'version' => 'dev-release/0.26.1',
|
| 715 |
'path' => $baseDir . '/src/API/Reports/Variations/Query.php'
|
| 716 |
),
|
| 717 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStore' => array(
|
| 718 |
+
'version' => 'dev-release/0.26.1',
|
| 719 |
'path' => $baseDir . '/src/API/Reports/DataStore.php'
|
| 720 |
),
|
| 721 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableTraits' => array(
|
| 722 |
+
'version' => 'dev-release/0.26.1',
|
| 723 |
'path' => $baseDir . '/src/API/Reports/ExportableTraits.php'
|
| 724 |
),
|
| 725 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Controller' => array(
|
| 726 |
+
'version' => 'dev-release/0.26.1',
|
| 727 |
'path' => $baseDir . '/src/API/Reports/Coupons/Controller.php'
|
| 728 |
),
|
| 729 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\DataStore' => array(
|
| 730 |
+
'version' => 'dev-release/0.26.1',
|
| 731 |
'path' => $baseDir . '/src/API/Reports/Coupons/DataStore.php'
|
| 732 |
),
|
| 733 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Query' => array(
|
| 734 |
+
'version' => 'dev-release/0.26.1',
|
| 735 |
'path' => $baseDir . '/src/API/Reports/Coupons/Query.php'
|
| 736 |
),
|
| 737 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Controller' => array(
|
| 738 |
+
'version' => 'dev-release/0.26.1',
|
| 739 |
'path' => $baseDir . '/src/API/Reports/Coupons/Stats/Controller.php'
|
| 740 |
),
|
| 741 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\DataStore' => array(
|
| 742 |
+
'version' => 'dev-release/0.26.1',
|
| 743 |
'path' => $baseDir . '/src/API/Reports/Coupons/Stats/DataStore.php'
|
| 744 |
),
|
| 745 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Segmenter' => array(
|
| 746 |
+
'version' => 'dev-release/0.26.1',
|
| 747 |
'path' => $baseDir . '/src/API/Reports/Coupons/Stats/Segmenter.php'
|
| 748 |
),
|
| 749 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Query' => array(
|
| 750 |
+
'version' => 'dev-release/0.26.1',
|
| 751 |
'path' => $baseDir . '/src/API/Reports/Coupons/Stats/Query.php'
|
| 752 |
),
|
| 753 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\ParameterException' => array(
|
| 754 |
+
'version' => 'dev-release/0.26.1',
|
| 755 |
'path' => $baseDir . '/src/API/Reports/ParameterException.php'
|
| 756 |
),
|
| 757 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Segmenter' => array(
|
| 758 |
+
'version' => 'dev-release/0.26.1',
|
| 759 |
'path' => $baseDir . '/src/API/Reports/Segmenter.php'
|
| 760 |
),
|
| 761 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Controller' => array(
|
| 762 |
+
'version' => 'dev-release/0.26.1',
|
| 763 |
'path' => $baseDir . '/src/API/Reports/Taxes/Controller.php'
|
| 764 |
),
|
| 765 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\DataStore' => array(
|
| 766 |
+
'version' => 'dev-release/0.26.1',
|
| 767 |
'path' => $baseDir . '/src/API/Reports/Taxes/DataStore.php'
|
| 768 |
),
|
| 769 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Query' => array(
|
| 770 |
+
'version' => 'dev-release/0.26.1',
|
| 771 |
'path' => $baseDir . '/src/API/Reports/Taxes/Query.php'
|
| 772 |
),
|
| 773 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Controller' => array(
|
| 774 |
+
'version' => 'dev-release/0.26.1',
|
| 775 |
'path' => $baseDir . '/src/API/Reports/Taxes/Stats/Controller.php'
|
| 776 |
),
|
| 777 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\DataStore' => array(
|
| 778 |
+
'version' => 'dev-release/0.26.1',
|
| 779 |
'path' => $baseDir . '/src/API/Reports/Taxes/Stats/DataStore.php'
|
| 780 |
),
|
| 781 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Segmenter' => array(
|
| 782 |
+
'version' => 'dev-release/0.26.1',
|
| 783 |
'path' => $baseDir . '/src/API/Reports/Taxes/Stats/Segmenter.php'
|
| 784 |
),
|
| 785 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Query' => array(
|
| 786 |
+
'version' => 'dev-release/0.26.1',
|
| 787 |
'path' => $baseDir . '/src/API/Reports/Taxes/Stats/Query.php'
|
| 788 |
),
|
| 789 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\PerformanceIndicators\\Controller' => array(
|
| 790 |
+
'version' => 'dev-release/0.26.1',
|
| 791 |
'path' => $baseDir . '/src/API/Reports/PerformanceIndicators/Controller.php'
|
| 792 |
),
|
| 793 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Query' => array(
|
| 794 |
+
'version' => 'dev-release/0.26.1',
|
| 795 |
'path' => $baseDir . '/src/API/Reports/Query.php'
|
| 796 |
),
|
| 797 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Controller' => array(
|
| 798 |
+
'version' => 'dev-release/0.26.1',
|
| 799 |
'path' => $baseDir . '/src/API/Reports/Orders/Controller.php'
|
| 800 |
),
|
| 801 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\DataStore' => array(
|
| 802 |
+
'version' => 'dev-release/0.26.1',
|
| 803 |
'path' => $baseDir . '/src/API/Reports/Orders/DataStore.php'
|
| 804 |
),
|
| 805 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Query' => array(
|
| 806 |
+
'version' => 'dev-release/0.26.1',
|
| 807 |
'path' => $baseDir . '/src/API/Reports/Orders/Query.php'
|
| 808 |
),
|
| 809 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Controller' => array(
|
| 810 |
+
'version' => 'dev-release/0.26.1',
|
| 811 |
'path' => $baseDir . '/src/API/Reports/Orders/Stats/Controller.php'
|
| 812 |
),
|
| 813 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\DataStore' => array(
|
| 814 |
+
'version' => 'dev-release/0.26.1',
|
| 815 |
'path' => $baseDir . '/src/API/Reports/Orders/Stats/DataStore.php'
|
| 816 |
),
|
| 817 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Segmenter' => array(
|
| 818 |
+
'version' => 'dev-release/0.26.1',
|
| 819 |
'path' => $baseDir . '/src/API/Reports/Orders/Stats/Segmenter.php'
|
| 820 |
),
|
| 821 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Query' => array(
|
| 822 |
+
'version' => 'dev-release/0.26.1',
|
| 823 |
'path' => $baseDir . '/src/API/Reports/Orders/Stats/Query.php'
|
| 824 |
),
|
| 825 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Export\\Controller' => array(
|
| 826 |
+
'version' => 'dev-release/0.26.1',
|
| 827 |
'path' => $baseDir . '/src/API/Reports/Export/Controller.php'
|
| 828 |
),
|
| 829 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Controller' => array(
|
| 830 |
+
'version' => 'dev-release/0.26.1',
|
| 831 |
'path' => $baseDir . '/src/API/Reports/Stock/Controller.php'
|
| 832 |
),
|
| 833 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Controller' => array(
|
| 834 |
+
'version' => 'dev-release/0.26.1',
|
| 835 |
'path' => $baseDir . '/src/API/Reports/Stock/Stats/Controller.php'
|
| 836 |
),
|
| 837 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\DataStore' => array(
|
| 838 |
+
'version' => 'dev-release/0.26.1',
|
| 839 |
'path' => $baseDir . '/src/API/Reports/Stock/Stats/DataStore.php'
|
| 840 |
),
|
| 841 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Query' => array(
|
| 842 |
+
'version' => 'dev-release/0.26.1',
|
| 843 |
'path' => $baseDir . '/src/API/Reports/Stock/Stats/Query.php'
|
| 844 |
),
|
| 845 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Query' => array(
|
| 846 |
+
'version' => 'dev-release/0.26.1',
|
| 847 |
'path' => $baseDir . '/src/API/Reports/Revenue/Query.php'
|
| 848 |
),
|
| 849 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Stats\\Controller' => array(
|
| 850 |
+
'version' => 'dev-release/0.26.1',
|
| 851 |
'path' => $baseDir . '/src/API/Reports/Revenue/Stats/Controller.php'
|
| 852 |
),
|
| 853 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Import\\Controller' => array(
|
| 854 |
+
'version' => 'dev-release/0.26.1',
|
| 855 |
'path' => $baseDir . '/src/API/Reports/Import/Controller.php'
|
| 856 |
),
|
| 857 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Controller' => array(
|
| 858 |
+
'version' => 'dev-release/0.26.1',
|
| 859 |
'path' => $baseDir . '/src/API/Reports/Downloads/Controller.php'
|
| 860 |
),
|
| 861 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\DataStore' => array(
|
| 862 |
+
'version' => 'dev-release/0.26.1',
|
| 863 |
'path' => $baseDir . '/src/API/Reports/Downloads/DataStore.php'
|
| 864 |
),
|
| 865 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Files\\Controller' => array(
|
| 866 |
+
'version' => 'dev-release/0.26.1',
|
| 867 |
'path' => $baseDir . '/src/API/Reports/Downloads/Files/Controller.php'
|
| 868 |
),
|
| 869 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Query' => array(
|
| 870 |
+
'version' => 'dev-release/0.26.1',
|
| 871 |
'path' => $baseDir . '/src/API/Reports/Downloads/Query.php'
|
| 872 |
),
|
| 873 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Controller' => array(
|
| 874 |
+
'version' => 'dev-release/0.26.1',
|
| 875 |
'path' => $baseDir . '/src/API/Reports/Downloads/Stats/Controller.php'
|
| 876 |
),
|
| 877 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\DataStore' => array(
|
| 878 |
+
'version' => 'dev-release/0.26.1',
|
| 879 |
'path' => $baseDir . '/src/API/Reports/Downloads/Stats/DataStore.php'
|
| 880 |
),
|
| 881 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Query' => array(
|
| 882 |
+
'version' => 'dev-release/0.26.1',
|
| 883 |
'path' => $baseDir . '/src/API/Reports/Downloads/Stats/Query.php'
|
| 884 |
),
|
| 885 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Controller' => array(
|
| 886 |
+
'version' => 'dev-release/0.26.1',
|
| 887 |
'path' => $baseDir . '/src/API/Reports/Categories/Controller.php'
|
| 888 |
),
|
| 889 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\DataStore' => array(
|
| 890 |
+
'version' => 'dev-release/0.26.1',
|
| 891 |
'path' => $baseDir . '/src/API/Reports/Categories/DataStore.php'
|
| 892 |
),
|
| 893 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Query' => array(
|
| 894 |
+
'version' => 'dev-release/0.26.1',
|
| 895 |
'path' => $baseDir . '/src/API/Reports/Categories/Query.php'
|
| 896 |
),
|
| 897 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\SqlQuery' => array(
|
| 898 |
+
'version' => 'dev-release/0.26.1',
|
| 899 |
'path' => $baseDir . '/src/API/Reports/SqlQuery.php'
|
| 900 |
),
|
| 901 |
'Automattic\\WooCommerce\\Admin\\PageController' => array(
|
| 902 |
+
'version' => 'dev-release/0.26.1',
|
| 903 |
'path' => $baseDir . '/src/PageController.php'
|
| 904 |
),
|
| 905 |
'Automattic\\WooCommerce\\Admin\\Schedulers\\ImportScheduler' => array(
|
| 906 |
+
'version' => 'dev-release/0.26.1',
|
| 907 |
'path' => $baseDir . '/src/Schedulers/ImportScheduler.php'
|
| 908 |
),
|
| 909 |
'Automattic\\WooCommerce\\Admin\\Schedulers\\OrdersScheduler' => array(
|
| 910 |
+
'version' => 'dev-release/0.26.1',
|
| 911 |
'path' => $baseDir . '/src/Schedulers/OrdersScheduler.php'
|
| 912 |
),
|
| 913 |
'Automattic\\WooCommerce\\Admin\\Schedulers\\SchedulerTraits' => array(
|
| 914 |
+
'version' => 'dev-release/0.26.1',
|
| 915 |
'path' => $baseDir . '/src/Schedulers/SchedulerTraits.php'
|
| 916 |
),
|
| 917 |
'Automattic\\WooCommerce\\Admin\\Schedulers\\ImportInterface' => array(
|
| 918 |
+
'version' => 'dev-release/0.26.1',
|
| 919 |
'path' => $baseDir . '/src/Schedulers/ImportInterface.php'
|
| 920 |
),
|
| 921 |
'Automattic\\WooCommerce\\Admin\\Schedulers\\CustomersScheduler' => array(
|
| 922 |
+
'version' => 'dev-release/0.26.1',
|
| 923 |
'path' => $baseDir . '/src/Schedulers/CustomersScheduler.php'
|
| 924 |
),
|
| 925 |
'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
|
vendor/composer/autoload_real.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
-
class
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit8b83ee59c1973b258ebdd589b4cf300b
|
|
| 19 |
return self::$loader;
|
| 20 |
}
|
| 21 |
|
| 22 |
-
spl_autoload_register(array('
|
| 23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
| 24 |
-
spl_autoload_unregister(array('
|
| 25 |
|
| 26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
| 27 |
if ($useStaticLoader) {
|
| 28 |
require_once __DIR__ . '/autoload_static.php';
|
| 29 |
|
| 30 |
-
call_user_func(\Composer\Autoload\
|
| 31 |
} else {
|
| 32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
| 33 |
foreach ($map as $namespace => $path) {
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
+
class ComposerAutoloaderInitdd2436c4ff8a3c314f9689119401be49
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
| 19 |
return self::$loader;
|
| 20 |
}
|
| 21 |
|
| 22 |
+
spl_autoload_register(array('ComposerAutoloaderInitdd2436c4ff8a3c314f9689119401be49', 'loadClassLoader'), true, true);
|
| 23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
| 24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitdd2436c4ff8a3c314f9689119401be49', 'loadClassLoader'));
|
| 25 |
|
| 26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
| 27 |
if ($useStaticLoader) {
|
| 28 |
require_once __DIR__ . '/autoload_static.php';
|
| 29 |
|
| 30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInitdd2436c4ff8a3c314f9689119401be49::getInitializer($loader));
|
| 31 |
} else {
|
| 32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
| 33 |
foreach ($map as $namespace => $path) {
|
vendor/composer/autoload_static.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
-
class
|
| 8 |
{
|
| 9 |
public static $prefixLengthsPsr4 = array (
|
| 10 |
'C' =>
|
|
@@ -36,8 +36,8 @@ class ComposerStaticInit8b83ee59c1973b258ebdd589b4cf300b
|
|
| 36 |
public static function getInitializer(ClassLoader $loader)
|
| 37 |
{
|
| 38 |
return \Closure::bind(function () use ($loader) {
|
| 39 |
-
$loader->prefixLengthsPsr4 =
|
| 40 |
-
$loader->prefixDirsPsr4 =
|
| 41 |
|
| 42 |
}, null, ClassLoader::class);
|
| 43 |
}
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
+
class ComposerStaticInitdd2436c4ff8a3c314f9689119401be49
|
| 8 |
{
|
| 9 |
public static $prefixLengthsPsr4 = array (
|
| 10 |
'C' =>
|
| 36 |
public static function getInitializer(ClassLoader $loader)
|
| 37 |
{
|
| 38 |
return \Closure::bind(function () use ($loader) {
|
| 39 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInitdd2436c4ff8a3c314f9689119401be49::$prefixLengthsPsr4;
|
| 40 |
+
$loader->prefixDirsPsr4 = ComposerStaticInitdd2436c4ff8a3c314f9689119401be49::$prefixDirsPsr4;
|
| 41 |
|
| 42 |
}, null, ClassLoader::class);
|
| 43 |
}
|
woocommerce-admin.php
CHANGED
|
@@ -7,7 +7,7 @@
|
|
| 7 |
* Author URI: https://woocommerce.com/
|
| 8 |
* Text Domain: woocommerce-admin
|
| 9 |
* Domain Path: /languages
|
| 10 |
-
* Version: 0.26.
|
| 11 |
* Requires at least: 5.3.0
|
| 12 |
* Requires PHP: 5.6.20
|
| 13 |
*
|
| 7 |
* Author URI: https://woocommerce.com/
|
| 8 |
* Text Domain: woocommerce-admin
|
| 9 |
* Domain Path: /languages
|
| 10 |
+
* Version: 0.26.1
|
| 11 |
* Requires at least: 5.3.0
|
| 12 |
* Requires PHP: 5.6.20
|
| 13 |
*
|
