PluginProbe ʕ •ᴥ•ʔ
CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice) / 2.0.2
CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice) v2.0.2
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 / admin / partials / cookie-law-info-privacy_overview.php
cookie-law-info / admin / partials Last commit date
cookie-law-info-admin_settings.php 5 years ago cookie-law-info-privacy_overview.php 5 years ago
cookie-law-info-privacy_overview.php
66 lines
1 <?php
2 // If this file is called directly, abort.
3 if ( ! defined( 'WPINC' ) ) {
4 die;
5 }
6 ?>
7 <style>
8 .vvv_textbox{
9 height: 150px;
10 width: 80%;
11 }
12 .cli-textbox{
13 width: 100%;
14 height: 35px;
15 margin-bottom: 5px;
16 }
17 .notice, div.updated, div.error{
18 margin: 5px 20px 15px 0;
19 }
20 </style>
21 <div class="wrap">
22
23 <div class="cookie-law-info-form-container">
24 <div class="cli-plugin-toolbar top">
25 <h3><?php _e('Privacy Overview', 'cookie-law-info');?></h3>
26 </div>
27 <form method="post" action="<?php echo esc_url($_SERVER["REQUEST_URI"]); ?>">
28 <?php wp_nonce_field('cookielawinfo-update-privacy-overview-content'); ?>
29 <table class="form-table cli_privacy_overview_form" >
30 <tr valign="top">
31 <td>
32 <label for="privacy_overview_title"><?php _e('Title', 'cookie-law-info'); ?></label>
33 <input type="text" name="privacy_overview_title" value="<?php echo sanitize_text_field( stripslashes( $privacy_title ) ); ?>" class="cli-textbox" />
34 </td>
35 </tr>
36 <tr valign="top">
37 <td>
38 <label for="privacy_overview_content"><?php _e('Privacy overview is displayed when the user clicks on ‘cookie settings’ from the cookie consent bar. Edit/ modify the title and content of ‘privacy overview’ from here.', 'cookie-law-info'); ?></label>
39 <?php
40 $cli_use_editor= apply_filters('cli_use_editor_in_po',true);
41 if($cli_use_editor)
42 {
43 wp_editor( stripslashes($privacy_content) , 'cli_privacy_overview_content', $wpe_settings = array('textarea_name'=>'privacy_overview_content','textarea_rows' => 10));
44 }
45 else
46 {
47 ?>
48 <textarea style="width:100%; height:250px;" name="privacy_overview_content"><?php echo wp_kses_post( stripslashes($privacy_content) ) ;?></textarea>
49 <?php
50 }
51 ?>
52 <div class="clearfix"></div>
53 </td>
54 </tr>
55 </table>
56 <div class="cli-plugin-toolbar bottom">
57 <div class="left">
58 </div>
59 <div class="right">
60 <input type="submit" name="update_privacy_overview_content_settings_form" value="<?php _e('Save Settings', 'cookie-law-info'); ?>" style="float: right;" class="button-primary" />
61 <span class="spinner" style="margin-top:9px"></span>
62 </div>
63 </div>
64 </form>
65 </div>
66 </div>