Remove License Statistics page due to issues

Keep existing Reports > Licenses dashboard which works correctly.
Version 0.0.11 now only includes the Created column in license overview.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-22 00:10:32 +01:00
parent 10453360ad
commit 6f1ea3c6fa
5 changed files with 4 additions and 722 deletions

View File

@@ -10,7 +10,6 @@ declare(strict_types=1);
namespace Jeremias\WcLicensedProduct;
use Jeremias\WcLicensedProduct\Admin\AdminController;
use Jeremias\WcLicensedProduct\Admin\AnalyticsController;
use Jeremias\WcLicensedProduct\Admin\OrderLicenseController;
use Jeremias\WcLicensedProduct\Admin\SettingsController;
use Jeremias\WcLicensedProduct\Admin\VersionAdminController;
@@ -57,11 +56,6 @@ final class Plugin
*/
private DownloadController $downloadController;
/**
* Analytics controller
*/
private ?AnalyticsController $analyticsController = null;
/**
* Get singleton instance
*/
@@ -139,8 +133,6 @@ final class Plugin
new VersionAdminController($this->versionManager);
new OrderLicenseController($this->licenseManager);
new SettingsController();
$this->analyticsController = new AnalyticsController($this->licenseManager);
$this->analyticsController->init();
}
}