dataProvider = new PrivacyAuditDataProvider(); } public function getData() { return [ 'compliance_status' => $this->dataProvider->getComplianceStatus() ]; } /** * Display HTML */ public function render() { $args = [ 'title' => esc_html__('Privacy Audit', 'wp-statistics'), 'tooltip' => esc_html__('Check your privacy settings here to make sure WP Statistics is set up safely. This page helps you see if any settings might be collecting personal information and guides you on how to adjust them for better privacy. It\'s an easy way to keep your site\'s data use clear and safe.', 'wp-statistics'), 'pageName' => Menus::get_page_slug('privacy_audit'), 'data' => $this->getData() ]; Admin_Template::get_template(['layout/header', 'layout/title', 'pages/privacy-audit', 'layout/footer'], $args); } }