PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
yith-woocommerce-wishlist
/
plugin-fw
/
lib
/
privacy
<?php !defined( 'ABSPATH' ) && exit; // Exit if accessed directly if ( !class_exists( 'YITH_Privacy' ) ) { /** * Class YITH_Privacy * Privacy Class * * @author Leanza Francesco <leanzafrancesco@gmail.com> */ class YITH_Privacy { private static $_instance; private $_title; public static function get_instance() { return !is_null( self::$_instance ) ? self::$_instance : self::$_instance = new self(); } /** * YITH_Privacy constructor. */ private function __construct() { $this->_title = apply_filters( 'yith_plugin_fw_privacy_policy_guide_title', _x( 'YITH Plugins', 'Privacy Policy Guide Title', 'yith-plugin-fw' ) ); add_action( 'admin_init', array( $this, 'add_privacy_message' ) ); } /** * Adds the privacy message on YITH privacy page. */ public function add_privacy_message() { if ( function_exists( 'wp_add_privacy_policy_content' ) ) { $content = $this->get_privacy_message(); if ( $content ) { wp_add_privacy_policy_content( $this->_title, $this->get_privacy_message() ); } } } /** * get the privacy message * * @return string */ public function get_privacy_message() { $privacy_content_path = YIT_CORE_PLUGIN_TEMPLATE_PATH . '/privacy/html-policy-content.php'; ob_start(); $sections = $this->get_sections(); if ( file_exists( $privacy_content_path ) ) include $privacy_content_path; return apply_filters( 'yith_wcbk_privacy_policy_content', ob_get_clean() ); } public function get_sections() { return apply_filters( 'yith_wcbk_privacy_policy_content_sections', array( 'general' => array( 'tutorial' => _x( 'This sample language includes the basics around what personal data your store may be collecting, storing and sharing, as well as who may have access to that data. Depending on what settings are enabled and which additional plugins are used, the specific information shared by your store will vary. We recommend consulting with a lawyer when deciding what information to disclose on your privacy policy.', 'Privacy Policy Content', 'yith-plugin-fw' ), 'description' => '', ), 'collect_and_store' => array( 'title' => _x( 'What we collect and store', 'Privacy Policy Content', 'yith-plugin-fw' ) ), 'has_access' => array( 'title' => _x( 'Who on our team has access', 'Privacy Policy Content', 'yith-plugin-fw' ) ), 'share' => array( 'title' => _x( 'What we share with others', 'Privacy Policy Content', 'yith-plugin-fw' ), ), 'payments' => array( 'title' => _x( 'Payments', 'Privacy Policy Content', 'yith-plugin-fw' ) ), ) ); } } } YITH_Privacy::get_instance();
[+]
..
[-] yit-privacy.php
[edit]
[-] yit-privacy-plugin-abstract.php
[edit]
[-] .privacy.php
[edit]