class-wcml-privacy-content.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | class WCML_Privacy_Content extends WPML_Privacy_Content { |
| 4 | |
| 5 | protected function get_plugin_name() { |
| 6 | return 'WPML Multilingual & Multicurrency for WooCommerce'; |
| 7 | } |
| 8 | |
| 9 | protected function get_privacy_policy() { |
| 10 | return [ |
| 11 | __( 'WPML Multilingual & Multicurrency for WooCommerce will use cookies to understand the basket info when using languages in domains and to transfer data between the domains.', 'woocommerce-multilingual' ), |
| 12 | __( 'WPML Multilingual & Multicurrency for WooCommerce will also use cookies to identify the language and currency of each customer’s order as well as the currency of the reports created by WooCommerce. WPML Multilingual & Multicurrency for WooCommerce extends these reports by adding the currency’s information.', 'woocommerce-multilingual' ), |
| 13 | ]; |
| 14 | } |
| 15 | |
| 16 | } |
| 17 |