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); } }