Files
doitinpoland.com/wp-content/plugins/sitepress-multilingual-cms/classes/privacy/class-wpml-core-privacy-content.php
2023-09-12 21:41:04 +02:00

26 lines
617 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* @author OnTheGo Systems
*/
class WPML_Core_Privacy_Content extends WPML_Privacy_Content {
/**
* @return string
*/
protected function get_plugin_name() {
return 'WPML';
}
/**
* @return string|array
*/
protected function get_privacy_policy() {
return array(
__( 'WPML uses cookies to identify the visitors current language, the last visited language and the language of users who have logged in.', 'sitepress' ),
__( 'While you use the plugin, WPML will share data regarding the site through Installer. No data from the user itself will be shared.', 'sitepress' ),
);
}
}