woocommerce-multilingual
/
addons
/
wpml-dependencies
/
lib
/
classes
/
privacy
/
class-wpml-core-privacy-content.php
class-wpml-core-privacy-content.php
3 weeks ago
class-wpml-privacy-content-factory.php
3 weeks ago
class-wpml-privacy-content.php
3 weeks ago
class-wpml-core-privacy-content.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | class WPML_Core_Privacy_Content extends WPML_Privacy_Content { |
| 4 | |
| 5 | protected function get_plugin_name() { |
| 6 | return 'WPML'; |
| 7 | } |
| 8 | |
| 9 | protected function get_privacy_policy() { |
| 10 | return array( |
| 11 | __( 'WPML uses cookies to identify the visitor’s current language, the last visited language and the language of users who have logged in.', 'sitepress' ), |
| 12 | __( 'While you use the plugin, WPML will share data regarding the site through Installer. No data from the user itself will be shared.', 'sitepress' ), |
| 13 | ); |
| 14 | } |
| 15 | |
| 16 | } |
| 17 |