Changeset 1605934 for uk-cookie-consent
- Timestamp:
- 03/01/2017 12:32:07 PM (9 years ago)
- Location:
- uk-cookie-consent/trunk
- Files:
-
- 2 added
- 3 edited
-
admin/class-ctcc-admin.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
tracking (added)
-
tracking/class-plugin-usage-tracker.php (added)
-
uk-cookie-consent.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uk-cookie-consent/trunk/admin/class-ctcc-admin.php
r1577328 r1605934 700 700 701 701 public function settings_section_callback() { 702 echo '<p>' .__( 'Basic settings', 'uk-cookie-consent' ) . '</p>'; 702 echo '<p>' . __( 'Basic settings', 'uk-cookie-consent' ) . '</p>'; 703 echo '<p><a href="http://iubenda.refr.cc/JKNZ55D" target="_blank">' . __( 'Create your own privacy policy here') . '</a></p>'; 703 704 } 704 705 705 706 public function content_settings_section_callback() { 706 707 echo '<p>' .__( 'Update the content displayed to the user', 'uk-cookie-consent' ) . '</p>'; 708 echo '<p><a href="http://iubenda.refr.cc/JKNZ55D" target="_blank">' . __( 'Create your own privacy policy here') . '</a></p>'; 707 709 } 708 710 709 711 public function styles_settings_section_callback() { 710 712 echo '<p>' .__( 'Change the styles here if you like - but it\'s better in the Customizer', 'uk-cookie-consent' ) . '</p>'; 713 echo '<p><a href="http://iubenda.refr.cc/JKNZ55D" target="_blank">' . __( 'Create your own privacy policy here') . '</a></p>'; 711 714 } 712 715 713 716 public function pages_settings_section_callback() { 714 717 echo '<p>' . __( 'Use this section to set exclusion rules for pages and posts.', 'uk-cookie-consent' ) . '</p>'; 718 echo '<p><a href="http://iubenda.refr.cc/JKNZ55D" target="_blank">' . __( 'Create your own privacy policy here') . '</a></p>'; 715 719 } 716 720 -
uk-cookie-consent/trunk/readme.txt
r1577328 r1605934 4 4 Tags: cookie law, cookies, eu cookie law, eu privacy directive, cookie compliance, cookie law, cookie notice, cookie notification, wpml, geo ip 5 5 Requires at least: 4.3 6 Tested up to: 4.7. 17 Stable tag: 2.3. 06 Tested up to: 4.7.2 7 Stable tag: 2.3.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 13 13 Cookie Consent is one of the simplest and most popular cookie notification plugins out there. It's been actively developed and supported since 2012 and has over 100 5 star reviews. 14 14 15 > <strong>New in 2.3.0:</strong><br>Geo IP support - choose which continents to display notifications (requires GeoIP Detect plugin to be installed) 15 > <strong>New in 2.3.0:</strong><br>Geo IP support - choose which continents to display notifications (requires GeoIP Detect plugin to be installed)<br> 16 16 > <strong>New in 2.2.0:</strong><br>Easily select pages or posts where the cookie notification doesn't display. You now have complete control over which pages display a notification and which don't.<br>Close on scroll - optionally choose scrolling as closure method. 17 17 … … 71 71 72 72 == Changelog == 73 74 = 2.3.1 = 75 * Added: link to create privacy policy 76 * Added: tracking 73 77 74 78 = 2.3.0 = -
uk-cookie-consent/trunk/uk-cookie-consent.php
r1577328 r1605934 4 4 Plugin URI: http://catapultthemes.com/cookie-consent/ 5 5 Description: The only cookie consent plugin you'll ever need. 6 Version: 2.3. 06 Version: 2.3.1 7 7 Author: Catapult_Themes 8 8 Author URI: http://catapultthemes.com/ … … 76 76 } 77 77 register_activation_hook ( __FILE__, 'ctcc_create_policy_page' ); 78 79 /** 80 * This function allows you to track usage of your plugin 81 * Place in your main plugin file 82 * Refer to https://wisdomplugin.com/support for help 83 */ 84 if( ! class_exists( 'Plugin_Usage_Tracker') ) { 85 require_once dirname( __FILE__ ) . '/tracking/class-plugin-usage-tracker.php'; 86 } 87 if( ! function_exists( 'uk_cookie_consent_start_plugin_tracking' ) ) { 88 function uk_cookie_consent_start_plugin_tracking() { 89 $wisdom = new Plugin_Usage_Tracker( 90 __FILE__, 91 'https://wisdomplugin.com', 92 array(), 93 true, 94 true, 95 1 96 ); 97 } 98 uk_cookie_consent_start_plugin_tracking(); 99 }
Note: See TracChangeset
for help on using the changeset viewer.