PluginProbe ʕ •ᴥ•ʔ
CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice) / 3.2.4
CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice) v3.2.4
3.5.1 3.5.0 3.4.2 trunk 1.0.1 1.0.3 1.2 1.2.1 1.2.2 1.3 1.3.1 1.3.2 1.4 1.4.1 1.4.2 1.4.3 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.10 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 1.7.0 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 1.7.7 1.7.8 1.7.9 1.8.0 1.8.1 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9.0 1.9.1 1.9.2 1.9.3 1.9.4 1.9.5 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.2.0 3.2.1 3.2.10 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.2.7 3.2.8 3.2.9 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9 3.3.9.1 3.4.0 3.4.1
cookie-law-info / legacy / third-party / class-cookie-law-info-third-party.php
cookie-law-info / legacy / third-party Last commit date
scripts 2 years ago class-cookie-law-info-third-party.php 2 years ago
class-cookie-law-info-third-party.php
53 lines
1 <?php
2 /**
3 * Third party plugin compatibility.
4 *
5 * @link http://cookielawinfo.com/
6 * @since 1.7.2
7 *
8 * @package Cookie_Law_Info
9 * @subpackage Cookie_Law_Info/third-party
10 */
11
12 /**
13 * Third party plugin compatibility.
14 *
15 * @package Cookie_Law_Info
16 * @subpackage Cookie_Law_Info/third-party
17 * @author WebToffee <info@webtoffee.com>
18 */
19 class Cookie_Law_Info_Third_Party {
20
21 /*
22 * scripts list, Script folder and main file must be same as that of script name
23 * Please check the `register_scripts` method for more details
24 */
25 private $scripts = array(
26 'pixelyoursite',
27 );
28
29 public static $existing_scripts = array();
30
31 /**
32 * Initialize the class and set its properties.
33 *
34 * @since 1.7.2
35 */
36 public function __construct() {
37
38 }
39
40 /**
41 * Registering third party scripts
42 */
43 public function register_scripts() {
44 foreach ( $this->scripts as $script ) {
45 $script_file = plugin_dir_path( __FILE__ ) . "scripts/$script/$script.php";
46 if ( file_exists( $script_file ) ) {
47 self::$existing_scripts[] = $script; // this is for module_exits checking
48 require_once $script_file;
49 }
50 }
51 }
52 }
53