Version Description
2019-12-26 =
- Fix: don't run database migrations on new installs. #3473
Download this release
Release Info
| Developer | jeffstieler |
| Plugin | |
| Version | 0.23.3 |
| Comparing to | |
| See all releases | |
Code changes from version 0.23.2 to 0.23.3
- languages/woocommerce-admin.pot +2 -2
- readme.txt +4 -0
- src/FeaturePlugin.php +1 -1
- src/Install.php +1 -1
- src/Package.php +1 -1
- vendor/autoload.php +1 -1
- vendor/autoload_packages.php +2 -2
- vendor/composer/autoload_classmap_package.php +127 -127
- 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,10 +2,10 @@
|
|
| 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.23.
|
| 6 |
"Report-Msgid-Bugs-To: "
|
| 7 |
"https://wordpress.org/support/plugin/woocommerce-admin\n"
|
| 8 |
-
"POT-Creation-Date: 2019-12-
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=utf-8\n"
|
| 11 |
"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.23.3\n"
|
| 6 |
"Report-Msgid-Bugs-To: "
|
| 7 |
"https://wordpress.org/support/plugin/woocommerce-admin\n"
|
| 8 |
+
"POT-Creation-Date: 2019-12-24 18:54:57+00:00\n"
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=utf-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
readme.txt
CHANGED
|
@@ -71,6 +71,10 @@ Release and roadmap notes are available on the [WooCommerce Developers Blog](htt
|
|
| 71 |
|
| 72 |
== Changelog ==
|
| 73 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
= 0.23.2 2019-12-19 =
|
| 75 |
|
| 76 |
- Enhancement: allow filtering of hidden WP notices. #3391 (Activity Panel, Extensibility)
|
| 71 |
|
| 72 |
== Changelog ==
|
| 73 |
|
| 74 |
+
= 0.23.3 2019-12-26 =
|
| 75 |
+
|
| 76 |
+
- Fix: don't run database migrations on new installs. #3473
|
| 77 |
+
|
| 78 |
= 0.23.2 2019-12-19 =
|
| 79 |
|
| 80 |
- Enhancement: allow filtering of hidden WP notices. #3391 (Activity Panel, Extensibility)
|
src/FeaturePlugin.php
CHANGED
|
@@ -142,7 +142,7 @@ class FeaturePlugin {
|
|
| 142 |
$this->define( 'WC_ADMIN_PLUGIN_FILE', WC_ADMIN_ABSPATH . 'woocommerce-admin.php' );
|
| 143 |
// WARNING: Do not directly edit this version number constant.
|
| 144 |
// It is updated as part of the prebuild process from the package.json value.
|
| 145 |
-
$this->define( 'WC_ADMIN_VERSION_NUMBER', '0.23.
|
| 146 |
}
|
| 147 |
|
| 148 |
/**
|
| 142 |
$this->define( 'WC_ADMIN_PLUGIN_FILE', WC_ADMIN_ABSPATH . 'woocommerce-admin.php' );
|
| 143 |
// WARNING: Do not directly edit this version number constant.
|
| 144 |
// It is updated as part of the prebuild process from the package.json value.
|
| 145 |
+
$this->define( 'WC_ADMIN_VERSION_NUMBER', '0.23.3' );
|
| 146 |
}
|
| 147 |
|
| 148 |
/**
|
src/Install.php
CHANGED
|
@@ -308,7 +308,7 @@ class Install {
|
|
| 308 |
* @return boolean
|
| 309 |
*/
|
| 310 |
public static function needs_db_update() {
|
| 311 |
-
$current_db_version = get_option( self::VERSION_OPTION );
|
| 312 |
$updates = self::get_db_update_callbacks();
|
| 313 |
$update_versions = array_keys( $updates );
|
| 314 |
usort( $update_versions, 'version_compare' );
|
| 308 |
* @return boolean
|
| 309 |
*/
|
| 310 |
public static function needs_db_update() {
|
| 311 |
+
$current_db_version = get_option( self::VERSION_OPTION, null );
|
| 312 |
$updates = self::get_db_update_callbacks();
|
| 313 |
$update_versions = array_keys( $updates );
|
| 314 |
usort( $update_versions, 'version_compare' );
|
src/Package.php
CHANGED
|
@@ -19,7 +19,7 @@ class Package {
|
|
| 19 |
*
|
| 20 |
* @var string
|
| 21 |
*/
|
| 22 |
-
const VERSION = '0.23.
|
| 23 |
|
| 24 |
/**
|
| 25 |
* Init the package.
|
| 19 |
*
|
| 20 |
* @var string
|
| 21 |
*/
|
| 22 |
+
const VERSION = '0.23.3';
|
| 23 |
|
| 24 |
/**
|
| 25 |
* Init the package.
|
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 ComposerAutoloaderInita2f809e04f8915e59f6291a1cb1aa68d::getLoader();
|
vendor/autoload_packages.php
CHANGED
|
@@ -122,7 +122,7 @@ if ( ! function_exists( __NAMESPACE__ . '\autoloader' ) ) {
|
|
| 122 |
/**
|
| 123 |
* Prepare all the classes for autoloading.
|
| 124 |
*/
|
| 125 |
-
function
|
| 126 |
$class_map = require_once dirname( __FILE__ ) . '/composer/autoload_classmap_package.php';
|
| 127 |
foreach ( $class_map as $class_name => $class_info ) {
|
| 128 |
enqueue_package_class( $class_name, $class_info['version'], $class_info['path'] );
|
|
@@ -141,4 +141,4 @@ function enqueue_packages_106369d53bf5ac27bfbe2352c7e51ad1() {
|
|
| 141 |
}
|
| 142 |
}
|
| 143 |
}
|
| 144 |
-
|
| 122 |
/**
|
| 123 |
* Prepare all the classes for autoloading.
|
| 124 |
*/
|
| 125 |
+
function enqueue_packages_cc434492bae7be556429bb401ef67d49() {
|
| 126 |
$class_map = require_once dirname( __FILE__ ) . '/composer/autoload_classmap_package.php';
|
| 127 |
foreach ( $class_map as $class_name => $class_info ) {
|
| 128 |
enqueue_package_class( $class_name, $class_info['version'], $class_info['path'] );
|
| 141 |
}
|
| 142 |
}
|
| 143 |
}
|
| 144 |
+
enqueue_packages_cc434492bae7be556429bb401ef67d49();
|
vendor/composer/autoload_classmap_package.php
CHANGED
|
@@ -383,511 +383,511 @@ 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.23.
|
| 387 |
'path' => $baseDir . '/src/Overrides/WPPostStore.php'
|
| 388 |
),
|
| 389 |
'Automattic\\WooCommerce\\Admin\\Overrides\\Order' => array(
|
| 390 |
-
'version' => 'dev-release/0.23.
|
| 391 |
'path' => $baseDir . '/src/Overrides/Order.php'
|
| 392 |
),
|
| 393 |
'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgrader' => array(
|
| 394 |
-
'version' => 'dev-release/0.23.
|
| 395 |
'path' => $baseDir . '/src/Overrides/ThemeUpgrader.php'
|
| 396 |
),
|
| 397 |
'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgraderSkin' => array(
|
| 398 |
-
'version' => 'dev-release/0.23.
|
| 399 |
'path' => $baseDir . '/src/Overrides/ThemeUpgraderSkin.php'
|
| 400 |
),
|
| 401 |
'Automattic\\WooCommerce\\Admin\\Overrides\\OrderTraits' => array(
|
| 402 |
-
'version' => 'dev-release/0.23.
|
| 403 |
'path' => $baseDir . '/src/Overrides/OrderTraits.php'
|
| 404 |
),
|
| 405 |
'Automattic\\WooCommerce\\Admin\\Overrides\\OrderRefund' => array(
|
| 406 |
-
'version' => 'dev-release/0.23.
|
| 407 |
'path' => $baseDir . '/src/Overrides/OrderRefund.php'
|
| 408 |
),
|
| 409 |
'Automattic\\WooCommerce\\Admin\\Loader' => array(
|
| 410 |
-
'version' => 'dev-release/0.23.
|
| 411 |
'path' => $baseDir . '/src/Loader.php'
|
| 412 |
),
|
| 413 |
'Automattic\\WooCommerce\\Admin\\ReportCSVEmail' => array(
|
| 414 |
-
'version' => 'dev-release/0.23.
|
| 415 |
'path' => $baseDir . '/src/ReportCSVEmail.php'
|
| 416 |
),
|
| 417 |
'Automattic\\WooCommerce\\Admin\\FeaturePlugin' => array(
|
| 418 |
-
'version' => 'dev-release/0.23.
|
| 419 |
'path' => $baseDir . '/src/FeaturePlugin.php'
|
| 420 |
),
|
| 421 |
'Automattic\\WooCommerce\\Admin\\ReportsSync' => array(
|
| 422 |
-
'version' => 'dev-release/0.23.
|
| 423 |
'path' => $baseDir . '/src/ReportsSync.php'
|
| 424 |
),
|
| 425 |
'Automattic\\WooCommerce\\Admin\\ReportCSVExporter' => array(
|
| 426 |
-
'version' => 'dev-release/0.23.
|
| 427 |
'path' => $baseDir . '/src/ReportCSVExporter.php'
|
| 428 |
),
|
| 429 |
'Automattic\\WooCommerce\\Admin\\Install' => array(
|
| 430 |
-
'version' => 'dev-release/0.23.
|
| 431 |
'path' => $baseDir . '/src/Install.php'
|
| 432 |
),
|
| 433 |
'Automattic\\WooCommerce\\Admin\\CategoryLookup' => array(
|
| 434 |
-
'version' => 'dev-release/0.23.
|
| 435 |
'path' => $baseDir . '/src/CategoryLookup.php'
|
| 436 |
),
|
| 437 |
'Automattic\\WooCommerce\\Admin\\Package' => array(
|
| 438 |
-
'version' => 'dev-release/0.23.
|
| 439 |
'path' => $baseDir . '/src/Package.php'
|
| 440 |
),
|
| 441 |
'Automattic\\WooCommerce\\Admin\\ReportExporter' => array(
|
| 442 |
-
'version' => 'dev-release/0.23.
|
| 443 |
'path' => $baseDir . '/src/ReportExporter.php'
|
| 444 |
),
|
| 445 |
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks' => array(
|
| 446 |
-
'version' => 'dev-release/0.23.
|
| 447 |
'path' => $baseDir . '/src/Features/OnboardingTasks.php'
|
| 448 |
),
|
| 449 |
'Automattic\\WooCommerce\\Admin\\Features\\ActivityPanels' => array(
|
| 450 |
-
'version' => 'dev-release/0.23.
|
| 451 |
'path' => $baseDir . '/src/Features/ActivityPanels.php'
|
| 452 |
),
|
| 453 |
'Automattic\\WooCommerce\\Admin\\Features\\Onboarding' => array(
|
| 454 |
-
'version' => 'dev-release/0.23.
|
| 455 |
'path' => $baseDir . '/src/Features/Onboarding.php'
|
| 456 |
),
|
| 457 |
'Automattic\\WooCommerce\\Admin\\Features\\Analytics' => array(
|
| 458 |
-
'version' => 'dev-release/0.23.
|
| 459 |
'path' => $baseDir . '/src/Features/Analytics.php'
|
| 460 |
),
|
| 461 |
'Automattic\\WooCommerce\\Admin\\Features\\AnalyticsDashboard' => array(
|
| 462 |
-
'version' => 'dev-release/0.23.
|
| 463 |
'path' => $baseDir . '/src/Features/AnalyticsDashboard.php'
|
| 464 |
),
|
| 465 |
'Automattic\\WooCommerce\\Admin\\Events' => array(
|
| 466 |
-
'version' => 'dev-release/0.23.
|
| 467 |
'path' => $baseDir . '/src/Events.php'
|
| 468 |
),
|
| 469 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_New_Sales_Record' => array(
|
| 470 |
-
'version' => 'dev-release/0.23.
|
| 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.23.
|
| 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.23.
|
| 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.23.
|
| 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.23.
|
| 487 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Order_Milestones.php'
|
| 488 |
),
|
| 489 |
'Automattic\\WooCommerce\\Admin\\Notes\\DataStore' => array(
|
| 490 |
-
'version' => 'dev-release/0.23.
|
| 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.23.
|
| 495 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Onboarding_Email_Marketing.php'
|
| 496 |
),
|
| 497 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Mobile_App' => array(
|
| 498 |
-
'version' => 'dev-release/0.23.
|
| 499 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Mobile_App.php'
|
| 500 |
),
|
| 501 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Woo_Subscriptions_Notes' => array(
|
| 502 |
-
'version' => 'dev-release/0.23.
|
| 503 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Woo_Subscriptions_Notes.php'
|
| 504 |
),
|
| 505 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Facebook_Extension' => array(
|
| 506 |
-
'version' => 'dev-release/0.23.
|
| 507 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Facebook_Extension.php'
|
| 508 |
),
|
| 509 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding' => array(
|
| 510 |
-
'version' => 'dev-release/0.23.
|
| 511 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Onboarding.php'
|
| 512 |
),
|
| 513 |
'Automattic\\WooCommerce\\Admin\\Notes\\NoteTraits' => array(
|
| 514 |
-
'version' => 'dev-release/0.23.
|
| 515 |
'path' => $baseDir . '/src/Notes/NoteTraits.php'
|
| 516 |
),
|
| 517 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Welcome_Message' => array(
|
| 518 |
-
'version' => 'dev-release/0.23.
|
| 519 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Welcome_Message.php'
|
| 520 |
),
|
| 521 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Settings_Notes' => array(
|
| 522 |
-
'version' => 'dev-release/0.23.
|
| 523 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Settings_Notes.php'
|
| 524 |
),
|
| 525 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Add_First_Product' => array(
|
| 526 |
-
'version' => 'dev-release/0.23.
|
| 527 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Add_First_Product.php'
|
| 528 |
),
|
| 529 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes' => array(
|
| 530 |
-
'version' => 'dev-release/0.23.
|
| 531 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes.php'
|
| 532 |
),
|
| 533 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Note' => array(
|
| 534 |
-
'version' => 'dev-release/0.23.
|
| 535 |
'path' => $baseDir . '/src/Notes/WC_Admin_Note.php'
|
| 536 |
),
|
| 537 |
'Automattic\\WooCommerce\\Admin\\API\\Taxes' => array(
|
| 538 |
-
'version' => 'dev-release/0.23.
|
| 539 |
'path' => $baseDir . '/src/API/Taxes.php'
|
| 540 |
),
|
| 541 |
'Automattic\\WooCommerce\\Admin\\API\\ProductReviews' => array(
|
| 542 |
-
'version' => 'dev-release/0.23.
|
| 543 |
'path' => $baseDir . '/src/API/ProductReviews.php'
|
| 544 |
),
|
| 545 |
'Automattic\\WooCommerce\\Admin\\API\\Init' => array(
|
| 546 |
-
'version' => 'dev-release/0.23.
|
| 547 |
'path' => $baseDir . '/src/API/Init.php'
|
| 548 |
),
|
| 549 |
'Automattic\\WooCommerce\\Admin\\API\\OnboardingProfile' => array(
|
| 550 |
-
'version' => 'dev-release/0.23.
|
| 551 |
'path' => $baseDir . '/src/API/OnboardingProfile.php'
|
| 552 |
),
|
| 553 |
'Automattic\\WooCommerce\\Admin\\API\\OnboardingTasks' => array(
|
| 554 |
-
'version' => 'dev-release/0.23.
|
| 555 |
'path' => $baseDir . '/src/API/OnboardingTasks.php'
|
| 556 |
),
|
| 557 |
'Automattic\\WooCommerce\\Admin\\API\\DataDownloadIPs' => array(
|
| 558 |
-
'version' => 'dev-release/0.23.
|
| 559 |
'path' => $baseDir . '/src/API/DataDownloadIPs.php'
|
| 560 |
),
|
| 561 |
'Automattic\\WooCommerce\\Admin\\API\\Themes' => array(
|
| 562 |
-
'version' => 'dev-release/0.23.
|
| 563 |
'path' => $baseDir . '/src/API/Themes.php'
|
| 564 |
),
|
| 565 |
'Automattic\\WooCommerce\\Admin\\API\\SettingOptions' => array(
|
| 566 |
-
'version' => 'dev-release/0.23.
|
| 567 |
'path' => $baseDir . '/src/API/SettingOptions.php'
|
| 568 |
),
|
| 569 |
'Automattic\\WooCommerce\\Admin\\API\\NoteActions' => array(
|
| 570 |
-
'version' => 'dev-release/0.23.
|
| 571 |
'path' => $baseDir . '/src/API/NoteActions.php'
|
| 572 |
),
|
| 573 |
'Automattic\\WooCommerce\\Admin\\API\\Notes' => array(
|
| 574 |
-
'version' => 'dev-release/0.23.
|
| 575 |
'path' => $baseDir . '/src/API/Notes.php'
|
| 576 |
),
|
| 577 |
'Automattic\\WooCommerce\\Admin\\API\\Coupons' => array(
|
| 578 |
-
'version' => 'dev-release/0.23.
|
| 579 |
'path' => $baseDir . '/src/API/Coupons.php'
|
| 580 |
),
|
| 581 |
'Automattic\\WooCommerce\\Admin\\API\\ProductCategories' => array(
|
| 582 |
-
'version' => 'dev-release/0.23.
|
| 583 |
'path' => $baseDir . '/src/API/ProductCategories.php'
|
| 584 |
),
|
| 585 |
'Automattic\\WooCommerce\\Admin\\API\\ProductVariations' => array(
|
| 586 |
-
'version' => 'dev-release/0.23.
|
| 587 |
'path' => $baseDir . '/src/API/ProductVariations.php'
|
| 588 |
),
|
| 589 |
'Automattic\\WooCommerce\\Admin\\API\\Leaderboards' => array(
|
| 590 |
-
'version' => 'dev-release/0.23.
|
| 591 |
'path' => $baseDir . '/src/API/Leaderboards.php'
|
| 592 |
),
|
| 593 |
'Automattic\\WooCommerce\\Admin\\API\\Data' => array(
|
| 594 |
-
'version' => 'dev-release/0.23.
|
| 595 |
'path' => $baseDir . '/src/API/Data.php'
|
| 596 |
),
|
| 597 |
'Automattic\\WooCommerce\\Admin\\API\\Options' => array(
|
| 598 |
-
'version' => 'dev-release/0.23.
|
| 599 |
'path' => $baseDir . '/src/API/Options.php'
|
| 600 |
),
|
| 601 |
'Automattic\\WooCommerce\\Admin\\API\\OnboardingPlugins' => array(
|
| 602 |
-
'version' => 'dev-release/0.23.
|
| 603 |
'path' => $baseDir . '/src/API/OnboardingPlugins.php'
|
| 604 |
),
|
| 605 |
'Automattic\\WooCommerce\\Admin\\API\\Products' => array(
|
| 606 |
-
'version' => 'dev-release/0.23.
|
| 607 |
'path' => $baseDir . '/src/API/Products.php'
|
| 608 |
),
|
| 609 |
'Automattic\\WooCommerce\\Admin\\API\\Customers' => array(
|
| 610 |
-
'version' => 'dev-release/0.23.
|
| 611 |
'path' => $baseDir . '/src/API/Customers.php'
|
| 612 |
),
|
| 613 |
'Automattic\\WooCommerce\\Admin\\API\\DataCountries' => array(
|
| 614 |
-
'version' => 'dev-release/0.23.
|
| 615 |
'path' => $baseDir . '/src/API/DataCountries.php'
|
| 616 |
),
|
| 617 |
'Automattic\\WooCommerce\\Admin\\API\\Orders' => array(
|
| 618 |
-
'version' => 'dev-release/0.23.
|
| 619 |
'path' => $baseDir . '/src/API/Orders.php'
|
| 620 |
),
|
| 621 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Controller' => array(
|
| 622 |
-
'version' => 'dev-release/0.23.
|
| 623 |
'path' => $baseDir . '/src/API/Reports/Customers/Controller.php'
|
| 624 |
),
|
| 625 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\DataStore' => array(
|
| 626 |
-
'version' => 'dev-release/0.23.
|
| 627 |
'path' => $baseDir . '/src/API/Reports/Customers/DataStore.php'
|
| 628 |
),
|
| 629 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Query' => array(
|
| 630 |
-
'version' => 'dev-release/0.23.
|
| 631 |
'path' => $baseDir . '/src/API/Reports/Customers/Query.php'
|
| 632 |
),
|
| 633 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Controller' => array(
|
| 634 |
-
'version' => 'dev-release/0.23.
|
| 635 |
'path' => $baseDir . '/src/API/Reports/Customers/Stats/Controller.php'
|
| 636 |
),
|
| 637 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\DataStore' => array(
|
| 638 |
-
'version' => 'dev-release/0.23.
|
| 639 |
'path' => $baseDir . '/src/API/Reports/Customers/Stats/DataStore.php'
|
| 640 |
),
|
| 641 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Query' => array(
|
| 642 |
-
'version' => 'dev-release/0.23.
|
| 643 |
'path' => $baseDir . '/src/API/Reports/Customers/Stats/Query.php'
|
| 644 |
),
|
| 645 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStoreInterface' => array(
|
| 646 |
-
'version' => 'dev-release/0.23.
|
| 647 |
'path' => $baseDir . '/src/API/Reports/DataStoreInterface.php'
|
| 648 |
),
|
| 649 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Controller' => array(
|
| 650 |
-
'version' => 'dev-release/0.23.
|
| 651 |
'path' => $baseDir . '/src/API/Reports/Controller.php'
|
| 652 |
),
|
| 653 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Controller' => array(
|
| 654 |
-
'version' => 'dev-release/0.23.
|
| 655 |
'path' => $baseDir . '/src/API/Reports/Products/Controller.php'
|
| 656 |
),
|
| 657 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\DataStore' => array(
|
| 658 |
-
'version' => 'dev-release/0.23.
|
| 659 |
'path' => $baseDir . '/src/API/Reports/Products/DataStore.php'
|
| 660 |
),
|
| 661 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Query' => array(
|
| 662 |
-
'version' => 'dev-release/0.23.
|
| 663 |
'path' => $baseDir . '/src/API/Reports/Products/Query.php'
|
| 664 |
),
|
| 665 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Controller' => array(
|
| 666 |
-
'version' => 'dev-release/0.23.
|
| 667 |
'path' => $baseDir . '/src/API/Reports/Products/Stats/Controller.php'
|
| 668 |
),
|
| 669 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\DataStore' => array(
|
| 670 |
-
'version' => 'dev-release/0.23.
|
| 671 |
'path' => $baseDir . '/src/API/Reports/Products/Stats/DataStore.php'
|
| 672 |
),
|
| 673 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Segmenter' => array(
|
| 674 |
-
'version' => 'dev-release/0.23.
|
| 675 |
'path' => $baseDir . '/src/API/Reports/Products/Stats/Segmenter.php'
|
| 676 |
),
|
| 677 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Query' => array(
|
| 678 |
-
'version' => 'dev-release/0.23.
|
| 679 |
'path' => $baseDir . '/src/API/Reports/Products/Stats/Query.php'
|
| 680 |
),
|
| 681 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\TimeInterval' => array(
|
| 682 |
-
'version' => 'dev-release/0.23.
|
| 683 |
'path' => $baseDir . '/src/API/Reports/TimeInterval.php'
|
| 684 |
),
|
| 685 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableInterface' => array(
|
| 686 |
-
'version' => 'dev-release/0.23.
|
| 687 |
'path' => $baseDir . '/src/API/Reports/ExportableInterface.php'
|
| 688 |
),
|
| 689 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Cache' => array(
|
| 690 |
-
'version' => 'dev-release/0.23.
|
| 691 |
'path' => $baseDir . '/src/API/Reports/Cache.php'
|
| 692 |
),
|
| 693 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Controller' => array(
|
| 694 |
-
'version' => 'dev-release/0.23.
|
| 695 |
'path' => $baseDir . '/src/API/Reports/Variations/Controller.php'
|
| 696 |
),
|
| 697 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\DataStore' => array(
|
| 698 |
-
'version' => 'dev-release/0.23.
|
| 699 |
'path' => $baseDir . '/src/API/Reports/Variations/DataStore.php'
|
| 700 |
),
|
| 701 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Query' => array(
|
| 702 |
-
'version' => 'dev-release/0.23.
|
| 703 |
'path' => $baseDir . '/src/API/Reports/Variations/Query.php'
|
| 704 |
),
|
| 705 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStore' => array(
|
| 706 |
-
'version' => 'dev-release/0.23.
|
| 707 |
'path' => $baseDir . '/src/API/Reports/DataStore.php'
|
| 708 |
),
|
| 709 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableTraits' => array(
|
| 710 |
-
'version' => 'dev-release/0.23.
|
| 711 |
'path' => $baseDir . '/src/API/Reports/ExportableTraits.php'
|
| 712 |
),
|
| 713 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Controller' => array(
|
| 714 |
-
'version' => 'dev-release/0.23.
|
| 715 |
'path' => $baseDir . '/src/API/Reports/Coupons/Controller.php'
|
| 716 |
),
|
| 717 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\DataStore' => array(
|
| 718 |
-
'version' => 'dev-release/0.23.
|
| 719 |
'path' => $baseDir . '/src/API/Reports/Coupons/DataStore.php'
|
| 720 |
),
|
| 721 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Query' => array(
|
| 722 |
-
'version' => 'dev-release/0.23.
|
| 723 |
'path' => $baseDir . '/src/API/Reports/Coupons/Query.php'
|
| 724 |
),
|
| 725 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Controller' => array(
|
| 726 |
-
'version' => 'dev-release/0.23.
|
| 727 |
'path' => $baseDir . '/src/API/Reports/Coupons/Stats/Controller.php'
|
| 728 |
),
|
| 729 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\DataStore' => array(
|
| 730 |
-
'version' => 'dev-release/0.23.
|
| 731 |
'path' => $baseDir . '/src/API/Reports/Coupons/Stats/DataStore.php'
|
| 732 |
),
|
| 733 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Segmenter' => array(
|
| 734 |
-
'version' => 'dev-release/0.23.
|
| 735 |
'path' => $baseDir . '/src/API/Reports/Coupons/Stats/Segmenter.php'
|
| 736 |
),
|
| 737 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Query' => array(
|
| 738 |
-
'version' => 'dev-release/0.23.
|
| 739 |
'path' => $baseDir . '/src/API/Reports/Coupons/Stats/Query.php'
|
| 740 |
),
|
| 741 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\ParameterException' => array(
|
| 742 |
-
'version' => 'dev-release/0.23.
|
| 743 |
'path' => $baseDir . '/src/API/Reports/ParameterException.php'
|
| 744 |
),
|
| 745 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Segmenter' => array(
|
| 746 |
-
'version' => 'dev-release/0.23.
|
| 747 |
'path' => $baseDir . '/src/API/Reports/Segmenter.php'
|
| 748 |
),
|
| 749 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Controller' => array(
|
| 750 |
-
'version' => 'dev-release/0.23.
|
| 751 |
'path' => $baseDir . '/src/API/Reports/Taxes/Controller.php'
|
| 752 |
),
|
| 753 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\DataStore' => array(
|
| 754 |
-
'version' => 'dev-release/0.23.
|
| 755 |
'path' => $baseDir . '/src/API/Reports/Taxes/DataStore.php'
|
| 756 |
),
|
| 757 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Query' => array(
|
| 758 |
-
'version' => 'dev-release/0.23.
|
| 759 |
'path' => $baseDir . '/src/API/Reports/Taxes/Query.php'
|
| 760 |
),
|
| 761 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Controller' => array(
|
| 762 |
-
'version' => 'dev-release/0.23.
|
| 763 |
'path' => $baseDir . '/src/API/Reports/Taxes/Stats/Controller.php'
|
| 764 |
),
|
| 765 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\DataStore' => array(
|
| 766 |
-
'version' => 'dev-release/0.23.
|
| 767 |
'path' => $baseDir . '/src/API/Reports/Taxes/Stats/DataStore.php'
|
| 768 |
),
|
| 769 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Segmenter' => array(
|
| 770 |
-
'version' => 'dev-release/0.23.
|
| 771 |
'path' => $baseDir . '/src/API/Reports/Taxes/Stats/Segmenter.php'
|
| 772 |
),
|
| 773 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Query' => array(
|
| 774 |
-
'version' => 'dev-release/0.23.
|
| 775 |
'path' => $baseDir . '/src/API/Reports/Taxes/Stats/Query.php'
|
| 776 |
),
|
| 777 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\PerformanceIndicators\\Controller' => array(
|
| 778 |
-
'version' => 'dev-release/0.23.
|
| 779 |
'path' => $baseDir . '/src/API/Reports/PerformanceIndicators/Controller.php'
|
| 780 |
),
|
| 781 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Query' => array(
|
| 782 |
-
'version' => 'dev-release/0.23.
|
| 783 |
'path' => $baseDir . '/src/API/Reports/Query.php'
|
| 784 |
),
|
| 785 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Controller' => array(
|
| 786 |
-
'version' => 'dev-release/0.23.
|
| 787 |
'path' => $baseDir . '/src/API/Reports/Orders/Controller.php'
|
| 788 |
),
|
| 789 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\DataStore' => array(
|
| 790 |
-
'version' => 'dev-release/0.23.
|
| 791 |
'path' => $baseDir . '/src/API/Reports/Orders/DataStore.php'
|
| 792 |
),
|
| 793 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Query' => array(
|
| 794 |
-
'version' => 'dev-release/0.23.
|
| 795 |
'path' => $baseDir . '/src/API/Reports/Orders/Query.php'
|
| 796 |
),
|
| 797 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Controller' => array(
|
| 798 |
-
'version' => 'dev-release/0.23.
|
| 799 |
'path' => $baseDir . '/src/API/Reports/Orders/Stats/Controller.php'
|
| 800 |
),
|
| 801 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\DataStore' => array(
|
| 802 |
-
'version' => 'dev-release/0.23.
|
| 803 |
'path' => $baseDir . '/src/API/Reports/Orders/Stats/DataStore.php'
|
| 804 |
),
|
| 805 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Segmenter' => array(
|
| 806 |
-
'version' => 'dev-release/0.23.
|
| 807 |
'path' => $baseDir . '/src/API/Reports/Orders/Stats/Segmenter.php'
|
| 808 |
),
|
| 809 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Query' => array(
|
| 810 |
-
'version' => 'dev-release/0.23.
|
| 811 |
'path' => $baseDir . '/src/API/Reports/Orders/Stats/Query.php'
|
| 812 |
),
|
| 813 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Export\\Controller' => array(
|
| 814 |
-
'version' => 'dev-release/0.23.
|
| 815 |
'path' => $baseDir . '/src/API/Reports/Export/Controller.php'
|
| 816 |
),
|
| 817 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Controller' => array(
|
| 818 |
-
'version' => 'dev-release/0.23.
|
| 819 |
'path' => $baseDir . '/src/API/Reports/Stock/Controller.php'
|
| 820 |
),
|
| 821 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Controller' => array(
|
| 822 |
-
'version' => 'dev-release/0.23.
|
| 823 |
'path' => $baseDir . '/src/API/Reports/Stock/Stats/Controller.php'
|
| 824 |
),
|
| 825 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\DataStore' => array(
|
| 826 |
-
'version' => 'dev-release/0.23.
|
| 827 |
'path' => $baseDir . '/src/API/Reports/Stock/Stats/DataStore.php'
|
| 828 |
),
|
| 829 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Query' => array(
|
| 830 |
-
'version' => 'dev-release/0.23.
|
| 831 |
'path' => $baseDir . '/src/API/Reports/Stock/Stats/Query.php'
|
| 832 |
),
|
| 833 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Query' => array(
|
| 834 |
-
'version' => 'dev-release/0.23.
|
| 835 |
'path' => $baseDir . '/src/API/Reports/Revenue/Query.php'
|
| 836 |
),
|
| 837 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Stats\\Controller' => array(
|
| 838 |
-
'version' => 'dev-release/0.23.
|
| 839 |
'path' => $baseDir . '/src/API/Reports/Revenue/Stats/Controller.php'
|
| 840 |
),
|
| 841 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Import\\Controller' => array(
|
| 842 |
-
'version' => 'dev-release/0.23.
|
| 843 |
'path' => $baseDir . '/src/API/Reports/Import/Controller.php'
|
| 844 |
),
|
| 845 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Controller' => array(
|
| 846 |
-
'version' => 'dev-release/0.23.
|
| 847 |
'path' => $baseDir . '/src/API/Reports/Downloads/Controller.php'
|
| 848 |
),
|
| 849 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\DataStore' => array(
|
| 850 |
-
'version' => 'dev-release/0.23.
|
| 851 |
'path' => $baseDir . '/src/API/Reports/Downloads/DataStore.php'
|
| 852 |
),
|
| 853 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Files\\Controller' => array(
|
| 854 |
-
'version' => 'dev-release/0.23.
|
| 855 |
'path' => $baseDir . '/src/API/Reports/Downloads/Files/Controller.php'
|
| 856 |
),
|
| 857 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Query' => array(
|
| 858 |
-
'version' => 'dev-release/0.23.
|
| 859 |
'path' => $baseDir . '/src/API/Reports/Downloads/Query.php'
|
| 860 |
),
|
| 861 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Controller' => array(
|
| 862 |
-
'version' => 'dev-release/0.23.
|
| 863 |
'path' => $baseDir . '/src/API/Reports/Downloads/Stats/Controller.php'
|
| 864 |
),
|
| 865 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\DataStore' => array(
|
| 866 |
-
'version' => 'dev-release/0.23.
|
| 867 |
'path' => $baseDir . '/src/API/Reports/Downloads/Stats/DataStore.php'
|
| 868 |
),
|
| 869 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Query' => array(
|
| 870 |
-
'version' => 'dev-release/0.23.
|
| 871 |
'path' => $baseDir . '/src/API/Reports/Downloads/Stats/Query.php'
|
| 872 |
),
|
| 873 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Controller' => array(
|
| 874 |
-
'version' => 'dev-release/0.23.
|
| 875 |
'path' => $baseDir . '/src/API/Reports/Categories/Controller.php'
|
| 876 |
),
|
| 877 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\DataStore' => array(
|
| 878 |
-
'version' => 'dev-release/0.23.
|
| 879 |
'path' => $baseDir . '/src/API/Reports/Categories/DataStore.php'
|
| 880 |
),
|
| 881 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Query' => array(
|
| 882 |
-
'version' => 'dev-release/0.23.
|
| 883 |
'path' => $baseDir . '/src/API/Reports/Categories/Query.php'
|
| 884 |
),
|
| 885 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\SqlQuery' => array(
|
| 886 |
-
'version' => 'dev-release/0.23.
|
| 887 |
'path' => $baseDir . '/src/API/Reports/SqlQuery.php'
|
| 888 |
),
|
| 889 |
'Automattic\\WooCommerce\\Admin\\PageController' => array(
|
| 890 |
-
'version' => 'dev-release/0.23.
|
| 891 |
'path' => $baseDir . '/src/PageController.php'
|
| 892 |
),
|
| 893 |
'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.23.3',
|
| 387 |
'path' => $baseDir . '/src/Overrides/WPPostStore.php'
|
| 388 |
),
|
| 389 |
'Automattic\\WooCommerce\\Admin\\Overrides\\Order' => array(
|
| 390 |
+
'version' => 'dev-release/0.23.3',
|
| 391 |
'path' => $baseDir . '/src/Overrides/Order.php'
|
| 392 |
),
|
| 393 |
'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgrader' => array(
|
| 394 |
+
'version' => 'dev-release/0.23.3',
|
| 395 |
'path' => $baseDir . '/src/Overrides/ThemeUpgrader.php'
|
| 396 |
),
|
| 397 |
'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgraderSkin' => array(
|
| 398 |
+
'version' => 'dev-release/0.23.3',
|
| 399 |
'path' => $baseDir . '/src/Overrides/ThemeUpgraderSkin.php'
|
| 400 |
),
|
| 401 |
'Automattic\\WooCommerce\\Admin\\Overrides\\OrderTraits' => array(
|
| 402 |
+
'version' => 'dev-release/0.23.3',
|
| 403 |
'path' => $baseDir . '/src/Overrides/OrderTraits.php'
|
| 404 |
),
|
| 405 |
'Automattic\\WooCommerce\\Admin\\Overrides\\OrderRefund' => array(
|
| 406 |
+
'version' => 'dev-release/0.23.3',
|
| 407 |
'path' => $baseDir . '/src/Overrides/OrderRefund.php'
|
| 408 |
),
|
| 409 |
'Automattic\\WooCommerce\\Admin\\Loader' => array(
|
| 410 |
+
'version' => 'dev-release/0.23.3',
|
| 411 |
'path' => $baseDir . '/src/Loader.php'
|
| 412 |
),
|
| 413 |
'Automattic\\WooCommerce\\Admin\\ReportCSVEmail' => array(
|
| 414 |
+
'version' => 'dev-release/0.23.3',
|
| 415 |
'path' => $baseDir . '/src/ReportCSVEmail.php'
|
| 416 |
),
|
| 417 |
'Automattic\\WooCommerce\\Admin\\FeaturePlugin' => array(
|
| 418 |
+
'version' => 'dev-release/0.23.3',
|
| 419 |
'path' => $baseDir . '/src/FeaturePlugin.php'
|
| 420 |
),
|
| 421 |
'Automattic\\WooCommerce\\Admin\\ReportsSync' => array(
|
| 422 |
+
'version' => 'dev-release/0.23.3',
|
| 423 |
'path' => $baseDir . '/src/ReportsSync.php'
|
| 424 |
),
|
| 425 |
'Automattic\\WooCommerce\\Admin\\ReportCSVExporter' => array(
|
| 426 |
+
'version' => 'dev-release/0.23.3',
|
| 427 |
'path' => $baseDir . '/src/ReportCSVExporter.php'
|
| 428 |
),
|
| 429 |
'Automattic\\WooCommerce\\Admin\\Install' => array(
|
| 430 |
+
'version' => 'dev-release/0.23.3',
|
| 431 |
'path' => $baseDir . '/src/Install.php'
|
| 432 |
),
|
| 433 |
'Automattic\\WooCommerce\\Admin\\CategoryLookup' => array(
|
| 434 |
+
'version' => 'dev-release/0.23.3',
|
| 435 |
'path' => $baseDir . '/src/CategoryLookup.php'
|
| 436 |
),
|
| 437 |
'Automattic\\WooCommerce\\Admin\\Package' => array(
|
| 438 |
+
'version' => 'dev-release/0.23.3',
|
| 439 |
'path' => $baseDir . '/src/Package.php'
|
| 440 |
),
|
| 441 |
'Automattic\\WooCommerce\\Admin\\ReportExporter' => array(
|
| 442 |
+
'version' => 'dev-release/0.23.3',
|
| 443 |
'path' => $baseDir . '/src/ReportExporter.php'
|
| 444 |
),
|
| 445 |
'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks' => array(
|
| 446 |
+
'version' => 'dev-release/0.23.3',
|
| 447 |
'path' => $baseDir . '/src/Features/OnboardingTasks.php'
|
| 448 |
),
|
| 449 |
'Automattic\\WooCommerce\\Admin\\Features\\ActivityPanels' => array(
|
| 450 |
+
'version' => 'dev-release/0.23.3',
|
| 451 |
'path' => $baseDir . '/src/Features/ActivityPanels.php'
|
| 452 |
),
|
| 453 |
'Automattic\\WooCommerce\\Admin\\Features\\Onboarding' => array(
|
| 454 |
+
'version' => 'dev-release/0.23.3',
|
| 455 |
'path' => $baseDir . '/src/Features/Onboarding.php'
|
| 456 |
),
|
| 457 |
'Automattic\\WooCommerce\\Admin\\Features\\Analytics' => array(
|
| 458 |
+
'version' => 'dev-release/0.23.3',
|
| 459 |
'path' => $baseDir . '/src/Features/Analytics.php'
|
| 460 |
),
|
| 461 |
'Automattic\\WooCommerce\\Admin\\Features\\AnalyticsDashboard' => array(
|
| 462 |
+
'version' => 'dev-release/0.23.3',
|
| 463 |
'path' => $baseDir . '/src/Features/AnalyticsDashboard.php'
|
| 464 |
),
|
| 465 |
'Automattic\\WooCommerce\\Admin\\Events' => array(
|
| 466 |
+
'version' => 'dev-release/0.23.3',
|
| 467 |
'path' => $baseDir . '/src/Events.php'
|
| 468 |
),
|
| 469 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_New_Sales_Record' => array(
|
| 470 |
+
'version' => 'dev-release/0.23.3',
|
| 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.23.3',
|
| 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.23.3',
|
| 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.23.3',
|
| 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.23.3',
|
| 487 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Order_Milestones.php'
|
| 488 |
),
|
| 489 |
'Automattic\\WooCommerce\\Admin\\Notes\\DataStore' => array(
|
| 490 |
+
'version' => 'dev-release/0.23.3',
|
| 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.23.3',
|
| 495 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Onboarding_Email_Marketing.php'
|
| 496 |
),
|
| 497 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Mobile_App' => array(
|
| 498 |
+
'version' => 'dev-release/0.23.3',
|
| 499 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Mobile_App.php'
|
| 500 |
),
|
| 501 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Woo_Subscriptions_Notes' => array(
|
| 502 |
+
'version' => 'dev-release/0.23.3',
|
| 503 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Woo_Subscriptions_Notes.php'
|
| 504 |
),
|
| 505 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Facebook_Extension' => array(
|
| 506 |
+
'version' => 'dev-release/0.23.3',
|
| 507 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Facebook_Extension.php'
|
| 508 |
),
|
| 509 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding' => array(
|
| 510 |
+
'version' => 'dev-release/0.23.3',
|
| 511 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Onboarding.php'
|
| 512 |
),
|
| 513 |
'Automattic\\WooCommerce\\Admin\\Notes\\NoteTraits' => array(
|
| 514 |
+
'version' => 'dev-release/0.23.3',
|
| 515 |
'path' => $baseDir . '/src/Notes/NoteTraits.php'
|
| 516 |
),
|
| 517 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Welcome_Message' => array(
|
| 518 |
+
'version' => 'dev-release/0.23.3',
|
| 519 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Welcome_Message.php'
|
| 520 |
),
|
| 521 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Settings_Notes' => array(
|
| 522 |
+
'version' => 'dev-release/0.23.3',
|
| 523 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Settings_Notes.php'
|
| 524 |
),
|
| 525 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Add_First_Product' => array(
|
| 526 |
+
'version' => 'dev-release/0.23.3',
|
| 527 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes_Add_First_Product.php'
|
| 528 |
),
|
| 529 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes' => array(
|
| 530 |
+
'version' => 'dev-release/0.23.3',
|
| 531 |
'path' => $baseDir . '/src/Notes/WC_Admin_Notes.php'
|
| 532 |
),
|
| 533 |
'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Note' => array(
|
| 534 |
+
'version' => 'dev-release/0.23.3',
|
| 535 |
'path' => $baseDir . '/src/Notes/WC_Admin_Note.php'
|
| 536 |
),
|
| 537 |
'Automattic\\WooCommerce\\Admin\\API\\Taxes' => array(
|
| 538 |
+
'version' => 'dev-release/0.23.3',
|
| 539 |
'path' => $baseDir . '/src/API/Taxes.php'
|
| 540 |
),
|
| 541 |
'Automattic\\WooCommerce\\Admin\\API\\ProductReviews' => array(
|
| 542 |
+
'version' => 'dev-release/0.23.3',
|
| 543 |
'path' => $baseDir . '/src/API/ProductReviews.php'
|
| 544 |
),
|
| 545 |
'Automattic\\WooCommerce\\Admin\\API\\Init' => array(
|
| 546 |
+
'version' => 'dev-release/0.23.3',
|
| 547 |
'path' => $baseDir . '/src/API/Init.php'
|
| 548 |
),
|
| 549 |
'Automattic\\WooCommerce\\Admin\\API\\OnboardingProfile' => array(
|
| 550 |
+
'version' => 'dev-release/0.23.3',
|
| 551 |
'path' => $baseDir . '/src/API/OnboardingProfile.php'
|
| 552 |
),
|
| 553 |
'Automattic\\WooCommerce\\Admin\\API\\OnboardingTasks' => array(
|
| 554 |
+
'version' => 'dev-release/0.23.3',
|
| 555 |
'path' => $baseDir . '/src/API/OnboardingTasks.php'
|
| 556 |
),
|
| 557 |
'Automattic\\WooCommerce\\Admin\\API\\DataDownloadIPs' => array(
|
| 558 |
+
'version' => 'dev-release/0.23.3',
|
| 559 |
'path' => $baseDir . '/src/API/DataDownloadIPs.php'
|
| 560 |
),
|
| 561 |
'Automattic\\WooCommerce\\Admin\\API\\Themes' => array(
|
| 562 |
+
'version' => 'dev-release/0.23.3',
|
| 563 |
'path' => $baseDir . '/src/API/Themes.php'
|
| 564 |
),
|
| 565 |
'Automattic\\WooCommerce\\Admin\\API\\SettingOptions' => array(
|
| 566 |
+
'version' => 'dev-release/0.23.3',
|
| 567 |
'path' => $baseDir . '/src/API/SettingOptions.php'
|
| 568 |
),
|
| 569 |
'Automattic\\WooCommerce\\Admin\\API\\NoteActions' => array(
|
| 570 |
+
'version' => 'dev-release/0.23.3',
|
| 571 |
'path' => $baseDir . '/src/API/NoteActions.php'
|
| 572 |
),
|
| 573 |
'Automattic\\WooCommerce\\Admin\\API\\Notes' => array(
|
| 574 |
+
'version' => 'dev-release/0.23.3',
|
| 575 |
'path' => $baseDir . '/src/API/Notes.php'
|
| 576 |
),
|
| 577 |
'Automattic\\WooCommerce\\Admin\\API\\Coupons' => array(
|
| 578 |
+
'version' => 'dev-release/0.23.3',
|
| 579 |
'path' => $baseDir . '/src/API/Coupons.php'
|
| 580 |
),
|
| 581 |
'Automattic\\WooCommerce\\Admin\\API\\ProductCategories' => array(
|
| 582 |
+
'version' => 'dev-release/0.23.3',
|
| 583 |
'path' => $baseDir . '/src/API/ProductCategories.php'
|
| 584 |
),
|
| 585 |
'Automattic\\WooCommerce\\Admin\\API\\ProductVariations' => array(
|
| 586 |
+
'version' => 'dev-release/0.23.3',
|
| 587 |
'path' => $baseDir . '/src/API/ProductVariations.php'
|
| 588 |
),
|
| 589 |
'Automattic\\WooCommerce\\Admin\\API\\Leaderboards' => array(
|
| 590 |
+
'version' => 'dev-release/0.23.3',
|
| 591 |
'path' => $baseDir . '/src/API/Leaderboards.php'
|
| 592 |
),
|
| 593 |
'Automattic\\WooCommerce\\Admin\\API\\Data' => array(
|
| 594 |
+
'version' => 'dev-release/0.23.3',
|
| 595 |
'path' => $baseDir . '/src/API/Data.php'
|
| 596 |
),
|
| 597 |
'Automattic\\WooCommerce\\Admin\\API\\Options' => array(
|
| 598 |
+
'version' => 'dev-release/0.23.3',
|
| 599 |
'path' => $baseDir . '/src/API/Options.php'
|
| 600 |
),
|
| 601 |
'Automattic\\WooCommerce\\Admin\\API\\OnboardingPlugins' => array(
|
| 602 |
+
'version' => 'dev-release/0.23.3',
|
| 603 |
'path' => $baseDir . '/src/API/OnboardingPlugins.php'
|
| 604 |
),
|
| 605 |
'Automattic\\WooCommerce\\Admin\\API\\Products' => array(
|
| 606 |
+
'version' => 'dev-release/0.23.3',
|
| 607 |
'path' => $baseDir . '/src/API/Products.php'
|
| 608 |
),
|
| 609 |
'Automattic\\WooCommerce\\Admin\\API\\Customers' => array(
|
| 610 |
+
'version' => 'dev-release/0.23.3',
|
| 611 |
'path' => $baseDir . '/src/API/Customers.php'
|
| 612 |
),
|
| 613 |
'Automattic\\WooCommerce\\Admin\\API\\DataCountries' => array(
|
| 614 |
+
'version' => 'dev-release/0.23.3',
|
| 615 |
'path' => $baseDir . '/src/API/DataCountries.php'
|
| 616 |
),
|
| 617 |
'Automattic\\WooCommerce\\Admin\\API\\Orders' => array(
|
| 618 |
+
'version' => 'dev-release/0.23.3',
|
| 619 |
'path' => $baseDir . '/src/API/Orders.php'
|
| 620 |
),
|
| 621 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Controller' => array(
|
| 622 |
+
'version' => 'dev-release/0.23.3',
|
| 623 |
'path' => $baseDir . '/src/API/Reports/Customers/Controller.php'
|
| 624 |
),
|
| 625 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\DataStore' => array(
|
| 626 |
+
'version' => 'dev-release/0.23.3',
|
| 627 |
'path' => $baseDir . '/src/API/Reports/Customers/DataStore.php'
|
| 628 |
),
|
| 629 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Query' => array(
|
| 630 |
+
'version' => 'dev-release/0.23.3',
|
| 631 |
'path' => $baseDir . '/src/API/Reports/Customers/Query.php'
|
| 632 |
),
|
| 633 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Controller' => array(
|
| 634 |
+
'version' => 'dev-release/0.23.3',
|
| 635 |
'path' => $baseDir . '/src/API/Reports/Customers/Stats/Controller.php'
|
| 636 |
),
|
| 637 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\DataStore' => array(
|
| 638 |
+
'version' => 'dev-release/0.23.3',
|
| 639 |
'path' => $baseDir . '/src/API/Reports/Customers/Stats/DataStore.php'
|
| 640 |
),
|
| 641 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Query' => array(
|
| 642 |
+
'version' => 'dev-release/0.23.3',
|
| 643 |
'path' => $baseDir . '/src/API/Reports/Customers/Stats/Query.php'
|
| 644 |
),
|
| 645 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStoreInterface' => array(
|
| 646 |
+
'version' => 'dev-release/0.23.3',
|
| 647 |
'path' => $baseDir . '/src/API/Reports/DataStoreInterface.php'
|
| 648 |
),
|
| 649 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Controller' => array(
|
| 650 |
+
'version' => 'dev-release/0.23.3',
|
| 651 |
'path' => $baseDir . '/src/API/Reports/Controller.php'
|
| 652 |
),
|
| 653 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Controller' => array(
|
| 654 |
+
'version' => 'dev-release/0.23.3',
|
| 655 |
'path' => $baseDir . '/src/API/Reports/Products/Controller.php'
|
| 656 |
),
|
| 657 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\DataStore' => array(
|
| 658 |
+
'version' => 'dev-release/0.23.3',
|
| 659 |
'path' => $baseDir . '/src/API/Reports/Products/DataStore.php'
|
| 660 |
),
|
| 661 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Query' => array(
|
| 662 |
+
'version' => 'dev-release/0.23.3',
|
| 663 |
'path' => $baseDir . '/src/API/Reports/Products/Query.php'
|
| 664 |
),
|
| 665 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Controller' => array(
|
| 666 |
+
'version' => 'dev-release/0.23.3',
|
| 667 |
'path' => $baseDir . '/src/API/Reports/Products/Stats/Controller.php'
|
| 668 |
),
|
| 669 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\DataStore' => array(
|
| 670 |
+
'version' => 'dev-release/0.23.3',
|
| 671 |
'path' => $baseDir . '/src/API/Reports/Products/Stats/DataStore.php'
|
| 672 |
),
|
| 673 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Segmenter' => array(
|
| 674 |
+
'version' => 'dev-release/0.23.3',
|
| 675 |
'path' => $baseDir . '/src/API/Reports/Products/Stats/Segmenter.php'
|
| 676 |
),
|
| 677 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Query' => array(
|
| 678 |
+
'version' => 'dev-release/0.23.3',
|
| 679 |
'path' => $baseDir . '/src/API/Reports/Products/Stats/Query.php'
|
| 680 |
),
|
| 681 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\TimeInterval' => array(
|
| 682 |
+
'version' => 'dev-release/0.23.3',
|
| 683 |
'path' => $baseDir . '/src/API/Reports/TimeInterval.php'
|
| 684 |
),
|
| 685 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableInterface' => array(
|
| 686 |
+
'version' => 'dev-release/0.23.3',
|
| 687 |
'path' => $baseDir . '/src/API/Reports/ExportableInterface.php'
|
| 688 |
),
|
| 689 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Cache' => array(
|
| 690 |
+
'version' => 'dev-release/0.23.3',
|
| 691 |
'path' => $baseDir . '/src/API/Reports/Cache.php'
|
| 692 |
),
|
| 693 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Controller' => array(
|
| 694 |
+
'version' => 'dev-release/0.23.3',
|
| 695 |
'path' => $baseDir . '/src/API/Reports/Variations/Controller.php'
|
| 696 |
),
|
| 697 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\DataStore' => array(
|
| 698 |
+
'version' => 'dev-release/0.23.3',
|
| 699 |
'path' => $baseDir . '/src/API/Reports/Variations/DataStore.php'
|
| 700 |
),
|
| 701 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Query' => array(
|
| 702 |
+
'version' => 'dev-release/0.23.3',
|
| 703 |
'path' => $baseDir . '/src/API/Reports/Variations/Query.php'
|
| 704 |
),
|
| 705 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStore' => array(
|
| 706 |
+
'version' => 'dev-release/0.23.3',
|
| 707 |
'path' => $baseDir . '/src/API/Reports/DataStore.php'
|
| 708 |
),
|
| 709 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableTraits' => array(
|
| 710 |
+
'version' => 'dev-release/0.23.3',
|
| 711 |
'path' => $baseDir . '/src/API/Reports/ExportableTraits.php'
|
| 712 |
),
|
| 713 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Controller' => array(
|
| 714 |
+
'version' => 'dev-release/0.23.3',
|
| 715 |
'path' => $baseDir . '/src/API/Reports/Coupons/Controller.php'
|
| 716 |
),
|
| 717 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\DataStore' => array(
|
| 718 |
+
'version' => 'dev-release/0.23.3',
|
| 719 |
'path' => $baseDir . '/src/API/Reports/Coupons/DataStore.php'
|
| 720 |
),
|
| 721 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Query' => array(
|
| 722 |
+
'version' => 'dev-release/0.23.3',
|
| 723 |
'path' => $baseDir . '/src/API/Reports/Coupons/Query.php'
|
| 724 |
),
|
| 725 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Controller' => array(
|
| 726 |
+
'version' => 'dev-release/0.23.3',
|
| 727 |
'path' => $baseDir . '/src/API/Reports/Coupons/Stats/Controller.php'
|
| 728 |
),
|
| 729 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\DataStore' => array(
|
| 730 |
+
'version' => 'dev-release/0.23.3',
|
| 731 |
'path' => $baseDir . '/src/API/Reports/Coupons/Stats/DataStore.php'
|
| 732 |
),
|
| 733 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Segmenter' => array(
|
| 734 |
+
'version' => 'dev-release/0.23.3',
|
| 735 |
'path' => $baseDir . '/src/API/Reports/Coupons/Stats/Segmenter.php'
|
| 736 |
),
|
| 737 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Query' => array(
|
| 738 |
+
'version' => 'dev-release/0.23.3',
|
| 739 |
'path' => $baseDir . '/src/API/Reports/Coupons/Stats/Query.php'
|
| 740 |
),
|
| 741 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\ParameterException' => array(
|
| 742 |
+
'version' => 'dev-release/0.23.3',
|
| 743 |
'path' => $baseDir . '/src/API/Reports/ParameterException.php'
|
| 744 |
),
|
| 745 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Segmenter' => array(
|
| 746 |
+
'version' => 'dev-release/0.23.3',
|
| 747 |
'path' => $baseDir . '/src/API/Reports/Segmenter.php'
|
| 748 |
),
|
| 749 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Controller' => array(
|
| 750 |
+
'version' => 'dev-release/0.23.3',
|
| 751 |
'path' => $baseDir . '/src/API/Reports/Taxes/Controller.php'
|
| 752 |
),
|
| 753 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\DataStore' => array(
|
| 754 |
+
'version' => 'dev-release/0.23.3',
|
| 755 |
'path' => $baseDir . '/src/API/Reports/Taxes/DataStore.php'
|
| 756 |
),
|
| 757 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Query' => array(
|
| 758 |
+
'version' => 'dev-release/0.23.3',
|
| 759 |
'path' => $baseDir . '/src/API/Reports/Taxes/Query.php'
|
| 760 |
),
|
| 761 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Controller' => array(
|
| 762 |
+
'version' => 'dev-release/0.23.3',
|
| 763 |
'path' => $baseDir . '/src/API/Reports/Taxes/Stats/Controller.php'
|
| 764 |
),
|
| 765 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\DataStore' => array(
|
| 766 |
+
'version' => 'dev-release/0.23.3',
|
| 767 |
'path' => $baseDir . '/src/API/Reports/Taxes/Stats/DataStore.php'
|
| 768 |
),
|
| 769 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Segmenter' => array(
|
| 770 |
+
'version' => 'dev-release/0.23.3',
|
| 771 |
'path' => $baseDir . '/src/API/Reports/Taxes/Stats/Segmenter.php'
|
| 772 |
),
|
| 773 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Query' => array(
|
| 774 |
+
'version' => 'dev-release/0.23.3',
|
| 775 |
'path' => $baseDir . '/src/API/Reports/Taxes/Stats/Query.php'
|
| 776 |
),
|
| 777 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\PerformanceIndicators\\Controller' => array(
|
| 778 |
+
'version' => 'dev-release/0.23.3',
|
| 779 |
'path' => $baseDir . '/src/API/Reports/PerformanceIndicators/Controller.php'
|
| 780 |
),
|
| 781 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Query' => array(
|
| 782 |
+
'version' => 'dev-release/0.23.3',
|
| 783 |
'path' => $baseDir . '/src/API/Reports/Query.php'
|
| 784 |
),
|
| 785 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Controller' => array(
|
| 786 |
+
'version' => 'dev-release/0.23.3',
|
| 787 |
'path' => $baseDir . '/src/API/Reports/Orders/Controller.php'
|
| 788 |
),
|
| 789 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\DataStore' => array(
|
| 790 |
+
'version' => 'dev-release/0.23.3',
|
| 791 |
'path' => $baseDir . '/src/API/Reports/Orders/DataStore.php'
|
| 792 |
),
|
| 793 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Query' => array(
|
| 794 |
+
'version' => 'dev-release/0.23.3',
|
| 795 |
'path' => $baseDir . '/src/API/Reports/Orders/Query.php'
|
| 796 |
),
|
| 797 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Controller' => array(
|
| 798 |
+
'version' => 'dev-release/0.23.3',
|
| 799 |
'path' => $baseDir . '/src/API/Reports/Orders/Stats/Controller.php'
|
| 800 |
),
|
| 801 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\DataStore' => array(
|
| 802 |
+
'version' => 'dev-release/0.23.3',
|
| 803 |
'path' => $baseDir . '/src/API/Reports/Orders/Stats/DataStore.php'
|
| 804 |
),
|
| 805 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Segmenter' => array(
|
| 806 |
+
'version' => 'dev-release/0.23.3',
|
| 807 |
'path' => $baseDir . '/src/API/Reports/Orders/Stats/Segmenter.php'
|
| 808 |
),
|
| 809 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Query' => array(
|
| 810 |
+
'version' => 'dev-release/0.23.3',
|
| 811 |
'path' => $baseDir . '/src/API/Reports/Orders/Stats/Query.php'
|
| 812 |
),
|
| 813 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Export\\Controller' => array(
|
| 814 |
+
'version' => 'dev-release/0.23.3',
|
| 815 |
'path' => $baseDir . '/src/API/Reports/Export/Controller.php'
|
| 816 |
),
|
| 817 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Controller' => array(
|
| 818 |
+
'version' => 'dev-release/0.23.3',
|
| 819 |
'path' => $baseDir . '/src/API/Reports/Stock/Controller.php'
|
| 820 |
),
|
| 821 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Controller' => array(
|
| 822 |
+
'version' => 'dev-release/0.23.3',
|
| 823 |
'path' => $baseDir . '/src/API/Reports/Stock/Stats/Controller.php'
|
| 824 |
),
|
| 825 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\DataStore' => array(
|
| 826 |
+
'version' => 'dev-release/0.23.3',
|
| 827 |
'path' => $baseDir . '/src/API/Reports/Stock/Stats/DataStore.php'
|
| 828 |
),
|
| 829 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Query' => array(
|
| 830 |
+
'version' => 'dev-release/0.23.3',
|
| 831 |
'path' => $baseDir . '/src/API/Reports/Stock/Stats/Query.php'
|
| 832 |
),
|
| 833 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Query' => array(
|
| 834 |
+
'version' => 'dev-release/0.23.3',
|
| 835 |
'path' => $baseDir . '/src/API/Reports/Revenue/Query.php'
|
| 836 |
),
|
| 837 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Stats\\Controller' => array(
|
| 838 |
+
'version' => 'dev-release/0.23.3',
|
| 839 |
'path' => $baseDir . '/src/API/Reports/Revenue/Stats/Controller.php'
|
| 840 |
),
|
| 841 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Import\\Controller' => array(
|
| 842 |
+
'version' => 'dev-release/0.23.3',
|
| 843 |
'path' => $baseDir . '/src/API/Reports/Import/Controller.php'
|
| 844 |
),
|
| 845 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Controller' => array(
|
| 846 |
+
'version' => 'dev-release/0.23.3',
|
| 847 |
'path' => $baseDir . '/src/API/Reports/Downloads/Controller.php'
|
| 848 |
),
|
| 849 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\DataStore' => array(
|
| 850 |
+
'version' => 'dev-release/0.23.3',
|
| 851 |
'path' => $baseDir . '/src/API/Reports/Downloads/DataStore.php'
|
| 852 |
),
|
| 853 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Files\\Controller' => array(
|
| 854 |
+
'version' => 'dev-release/0.23.3',
|
| 855 |
'path' => $baseDir . '/src/API/Reports/Downloads/Files/Controller.php'
|
| 856 |
),
|
| 857 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Query' => array(
|
| 858 |
+
'version' => 'dev-release/0.23.3',
|
| 859 |
'path' => $baseDir . '/src/API/Reports/Downloads/Query.php'
|
| 860 |
),
|
| 861 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Controller' => array(
|
| 862 |
+
'version' => 'dev-release/0.23.3',
|
| 863 |
'path' => $baseDir . '/src/API/Reports/Downloads/Stats/Controller.php'
|
| 864 |
),
|
| 865 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\DataStore' => array(
|
| 866 |
+
'version' => 'dev-release/0.23.3',
|
| 867 |
'path' => $baseDir . '/src/API/Reports/Downloads/Stats/DataStore.php'
|
| 868 |
),
|
| 869 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Query' => array(
|
| 870 |
+
'version' => 'dev-release/0.23.3',
|
| 871 |
'path' => $baseDir . '/src/API/Reports/Downloads/Stats/Query.php'
|
| 872 |
),
|
| 873 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Controller' => array(
|
| 874 |
+
'version' => 'dev-release/0.23.3',
|
| 875 |
'path' => $baseDir . '/src/API/Reports/Categories/Controller.php'
|
| 876 |
),
|
| 877 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\DataStore' => array(
|
| 878 |
+
'version' => 'dev-release/0.23.3',
|
| 879 |
'path' => $baseDir . '/src/API/Reports/Categories/DataStore.php'
|
| 880 |
),
|
| 881 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Query' => array(
|
| 882 |
+
'version' => 'dev-release/0.23.3',
|
| 883 |
'path' => $baseDir . '/src/API/Reports/Categories/Query.php'
|
| 884 |
),
|
| 885 |
'Automattic\\WooCommerce\\Admin\\API\\Reports\\SqlQuery' => array(
|
| 886 |
+
'version' => 'dev-release/0.23.3',
|
| 887 |
'path' => $baseDir . '/src/API/Reports/SqlQuery.php'
|
| 888 |
),
|
| 889 |
'Automattic\\WooCommerce\\Admin\\PageController' => array(
|
| 890 |
+
'version' => 'dev-release/0.23.3',
|
| 891 |
'path' => $baseDir . '/src/PageController.php'
|
| 892 |
),
|
| 893 |
'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 ComposerAutoloaderInit7e70e1ec01748d99e4087246e87bdc6b
|
|
| 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 ComposerAutoloaderInita2f809e04f8915e59f6291a1cb1aa68d
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
| 19 |
return self::$loader;
|
| 20 |
}
|
| 21 |
|
| 22 |
+
spl_autoload_register(array('ComposerAutoloaderInita2f809e04f8915e59f6291a1cb1aa68d', 'loadClassLoader'), true, true);
|
| 23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
| 24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInita2f809e04f8915e59f6291a1cb1aa68d', '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\ComposerStaticInita2f809e04f8915e59f6291a1cb1aa68d::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 ComposerStaticInit7e70e1ec01748d99e4087246e87bdc6b
|
|
| 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 ComposerStaticInita2f809e04f8915e59f6291a1cb1aa68d
|
| 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 = ComposerStaticInita2f809e04f8915e59f6291a1cb1aa68d::$prefixLengthsPsr4;
|
| 40 |
+
$loader->prefixDirsPsr4 = ComposerStaticInita2f809e04f8915e59f6291a1cb1aa68d::$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.23.
|
| 11 |
* Requires at least: 5.2.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.23.3
|
| 11 |
* Requires at least: 5.2.0
|
| 12 |
* Requires PHP: 5.6.20
|
| 13 |
*
|
