mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-20 23:30:02 +08:00
* [APP-1262] Enable routes for get statistic on disabled analytics * [APP-1262] Enable routes for get statistic on disabled analytics * [APP-1262] Enable routes for get statistic on disabled analytics * [APP-1262] Enable routes for get statistic on disabled analytics * [APP-1262] Enable routes for get statistic on disabled analytics * [APP-1262] Enable routes for get statistic on disabled analytics
63 lines
1.3 KiB
PHP
63 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace EA11y\Modules\Analytics;
|
|
|
|
use EA11y\Classes\Module_Base;
|
|
use EA11y\Modules\Analytics\Database\Analytics_Table;
|
|
use EA11y\Modules\Analytics\Rest\Statistic;
|
|
use EA11y\Modules\Settings\Classes\Settings;
|
|
use EA11y\Modules\Settings\Module as SettingsModule;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
/**
|
|
* Class Module
|
|
*/
|
|
class Module extends Module_Base {
|
|
|
|
/**
|
|
* Get module name.
|
|
* Retrieve the module name.
|
|
* @access public
|
|
* @return string Module name.
|
|
*/
|
|
public function get_name(): string {
|
|
return 'analytics';
|
|
}
|
|
|
|
public static function component_list(): array {
|
|
return [
|
|
'Analytics_Daily',
|
|
];
|
|
}
|
|
|
|
|
|
public static function routes_list() : array {
|
|
return [
|
|
'Events',
|
|
];
|
|
}
|
|
|
|
public static function register_required_routes() {
|
|
new Statistic();
|
|
}
|
|
|
|
public static function is_active(): bool {
|
|
$plan_data = Settings::get( Settings::PLAN_DATA );
|
|
return (
|
|
isset( $plan_data->plan->features->analytics ) &&
|
|
$plan_data->plan->features->analytics &&
|
|
Settings::get( Settings::ANALYTICS_SETTINGS )
|
|
);
|
|
}
|
|
|
|
public function __construct() {
|
|
$this->register_components();
|
|
$this->register_routes();
|
|
|
|
// this make sure the database table is created and or updated when needed
|
|
Analytics_Table::install();
|
|
}
|
|
}
|