__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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\HelpCenter;
use WP_STATISTICS\Menus;
use WP_STATISTICS\Admin_Template;
use WP_Statistics\Abstracts\BasePage;
use WP_STATISTICS\Admin_Assets;
class HelpCenterPage extends BasePage
{
protected $pageSlug = 'help-center';
protected $dataProvider;
public function __construct()
{
parent::__construct();
$this->dataProvider = new HelpCenterDataProvider();
}
public function init()
{
}
public function getData()
{
return '';
}
public function view()
{
$args = [
'title' => esc_html__('Help Center', 'wp-statistics'),
'tooltip' => esc_html__('Help Center', 'wp-statistics'),
'pageName' => Menus::get_page_slug('help-center'),
'data' => $this->getData()
];
Admin_Template::get_template(['layout/header', 'pages/help-center', 'layout/footer'], $args);
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| HelpCenterDataProvider.php | File | 195 B | 0644 |
|
| HelpCenterManager.php | File | 1.49 KB | 0644 |
|
| HelpCenterPage.php | File | 980 B | 0644 |
|