get_privacy_message() // policy text ); } } /** * Builds the AdPlugg privacy message. * suggestions. * * @since 1.9.0 */ public function get_privacy_message() { $content = '
' . 'This sample language is provided as an example of what you may want to include in your Privacy Policy regarding your use of AdPlugg. We recommend consulting with a lawyer when deciding what specific information to disclose on your privacy policy.' . '
' . '' . 'You are required to post a Privacy Policy on your website as per the AdPlugg Terms of Use.' . '
' . 'In this subsection you should list which third party data processors you are using on your site, including AdPlugg.
' . 'We are very selective with the Third Parties that we choose to partner with and only select Third Party partners that we believe are committed to personal privacy.
' . 'To help fund our Website, we use advertising and while you visit our site, you may be shown ads.
' . 'We use AdPlugg to manage and serve ads to our readers ("Ad Audience Members").
' . 'AdPlugg doesn\'t collect personally identifiable information ("Personal Information") regarding Ad Audience Members. Personal Information is defined as information by which you may be personally identified, such as your name, postal address, e-mail address or telephone number ("Personal Information").
' . 'AdPlugg does however, collect Anonymous Information, which is information that cannot reasonably be used to personally identify you. In addition, they collect Aggregate Information, which is information about groups or categories of Ad Audience Members, this information is also anonymous and cannot reasonably be used to personally identify you.
' . 'AdPlugg collects this information in order to:
' . 'AdPlugg collects this information via:' . '
To learn more, please see the AdPlugg Audience Privacy Policy.
'; return $content; } /** * Gets the singleton instance. * * @return \AdPlugg_Privacy Returns the singleton instance of this class. */ public static function get_instance() { if ( ! isset( self::$instance ) ) { self::$instance = new self(); } return self::$instance; } }