PluginProbe ʕ •ᴥ•ʔ
WP Content Copy Protection & No Right Click / 3.5.6
WP Content Copy Protection & No Right Click v3.5.6
trunk 1.0 1.2 1.3 1.5.0.3 1.5.0.4 1.6 1.7 1.7.3 1.9 2.3 2.6 2.8.1 2.9 3.1 3.1.5 3.4 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.4.7 3.4.9 3.5.1 3.5.2 3.5.3 3.5.4 3.5.5 3.5.6 3.5.7 3.5.8 3.5.9 3.6.1 3.6.2 3.6.3 3.6.4 3.6.5 3.6.6 3.6.7 3.6.8 3.6.9 3.7
wp-content-copy-protector / admin-core.php
wp-content-copy-protector Last commit date
css 2 years ago images 2 years ago js 2 years ago languages 2 years ago admin-core.php 2 years ago notifications.php 2 years ago preventer-index.php 2 years ago readme.txt 2 years ago right-click-protection.jpg 2 years ago the_globals.php 2 years ago watermark-adv.jpg 2 years ago watermarking-adv-examples.png 2 years ago
admin-core.php
612 lines
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
3 if ( !current_user_can('edit_others_pages') ) { //protection for admin content
4 exit(0);
5 } ?>
6 <?php
7 //define all variables the needed alot
8 include 'the_globals.php';
9 include 'notifications.php';
10 add_action('admin_footer','alert_message');
11
12 if ( isset( $_POST['Restore_defaults'] ) )
13 {
14 update_option("wccp_settings" , "");
15 $new_url = "?page=wccpoptionspro";
16 header("Location: $new_url");
17 }
18
19 if(isset($_POST["Save_settings"]) && (isset($_POST["make_this_form_verified_nonce"]) && wp_verify_nonce( $_POST[ 'make_this_form_verified_nonce' ], 'make_form_nonce_action' )))
20 {
21 //----------------------------------------------------list the options array values
22 $single_posts_protection = '';
23 if(isset($_POST["single_posts_protection"])) $single_posts_protection = sanitize_text_field($_POST["single_posts_protection"]);
24 $home_page_protection = '';
25 if(isset($_POST["home_page_protection"])) $home_page_protection = sanitize_text_field($_POST["home_page_protection"]);
26 $page_protection = '';
27 if(isset($_POST["page_protection"])) $page_protection = sanitize_text_field($_POST["page_protection"]);
28
29 $top_bar_icon_btn = '';
30 if(isset($_POST["top_bar_icon_btn"])) $top_bar_icon_btn = sanitize_text_field($_POST["top_bar_icon_btn"]);
31
32 $exclude_admin_from_protection = '';
33 if(isset($_POST["exclude_admin_from_protection"])) $exclude_admin_from_protection = sanitize_text_field($_POST["exclude_admin_from_protection"]);
34
35 $home_css_protection = '';
36 if(isset($_POST["home_css_protection"])) $home_css_protection = sanitize_text_field($_POST["home_css_protection"]);
37 $posts_css_protection = '';
38 if(isset($_POST["posts_css_protection"])) $posts_css_protection = sanitize_text_field($_POST["posts_css_protection"]);
39 $pages_css_protection = '';
40 if(isset($_POST["pages_css_protection"])) $pages_css_protection = sanitize_text_field($_POST["pages_css_protection"]);
41
42 $right_click_protection_posts = '';
43 if(isset($_POST["right_click_protection_posts"])) $right_click_protection_posts = sanitize_text_field($_POST["right_click_protection_posts"]);
44 $right_click_protection_homepage = '';
45 if(isset($_POST["right_click_protection_homepage"])) $right_click_protection_homepage = sanitize_text_field($_POST["right_click_protection_homepage"]);
46 $right_click_protection_pages = '';
47 if(isset($_POST["right_click_protection_pages"])) $right_click_protection_pages = sanitize_text_field($_POST["right_click_protection_pages"]);
48
49 $img = '';
50 if(isset($_POST["img"])) $img = sanitize_text_field($_POST["img"]);
51 $a = '';
52 if(isset($_POST["a"])) $a = sanitize_text_field($_POST["a"]);
53 $pb = '';
54 if(isset($_POST["pb"])) $pb = sanitize_text_field($_POST["pb"]);
55 $input = '';
56 if(isset($_POST["input"])) $input = sanitize_text_field($_POST["input"]);
57 $h = '';
58 if(isset($_POST["h"])) $h = sanitize_text_field($_POST["h"]);
59 $textarea = '';
60 if(isset($_POST["textarea"])) $textarea = sanitize_text_field($_POST["textarea"]);
61 $emptyspaces = '';
62 if(isset($_POST["emptyspaces"])) $emptyspaces = sanitize_text_field($_POST["emptyspaces"]);
63
64 $smessage = '';
65 if(isset($_POST["smessage"])) $smessage = wccp_sanitize($_POST["smessage"], "textbox");
66 $alert_msg_img = '';
67 if(isset($_POST["alert_msg_img"])) $alert_msg_img = sanitize_text_field($_POST["alert_msg_img"]);
68 $alert_msg_a = '';
69 if(isset($_POST["alert_msg_a"])) $alert_msg_a = sanitize_text_field($_POST["alert_msg_a"]);
70 $alert_msg_pb = '';
71 if(isset($_POST["alert_msg_pb"])) $alert_msg_pb = sanitize_text_field($_POST["alert_msg_pb"]);
72 $alert_msg_input = '';
73 if(isset($_POST["alert_msg_input"])) $alert_msg_input = sanitize_text_field($_POST["alert_msg_input"]);
74 $alert_msg_h = '';
75 if(isset($_POST["alert_msg_h"])) $alert_msg_h = sanitize_text_field($_POST["alert_msg_h"]);
76 $alert_msg_textarea = '';
77 if(isset($_POST["alert_msg_textarea"])) $alert_msg_textarea = sanitize_text_field($_POST["alert_msg_textarea"]);
78 $alert_msg_emptyspaces = '';
79 if(isset($_POST["alert_msg_emptyspaces"])) $alert_msg_emptyspaces = sanitize_text_field($_POST["alert_msg_emptyspaces"]);
80 $prnt_scr_msg = '';
81 if(isset($_POST["prnt_scr_msg"])) $prnt_scr_msg = wccp_sanitize($_POST["prnt_scr_msg"], "text");
82
83 //----------------------------------------------------Get the options array values
84 $wccp_settings =
85 Array (
86 'single_posts_protection' => $single_posts_protection, // prevent content copy, take 2 parameters
87 'home_page_protection' => $home_page_protection, // PROTECT THE HOME PAGE OR NOT
88 'page_protection' => $page_protection, // protect pages by javascript
89 'top_bar_icon_btn' => $top_bar_icon_btn, // protection icon on top bar
90 'right_click_protection_posts' => $right_click_protection_posts, //no comment here
91 'right_click_protection_homepage' => $right_click_protection_homepage, //no comment here
92 'right_click_protection_pages' => $right_click_protection_pages, //no comment here
93 'home_css_protection' => $home_css_protection, // premium option
94 'posts_css_protection' => $posts_css_protection, // premium option (unlocked and become free option)
95 'pages_css_protection' => 'No', // premium option
96 'exclude_admin_from_protection' => 'No', // premium option
97 'img' => '', // premium option
98 'a' => '', // premium option
99 'pb' => '', // premium option
100 'input' => '', // premium option
101 'h' => '', // premium option
102 'textarea' => '', // premium option
103 'emptyspaces' => '', // premium option
104 'smessage' => $smessage,
105 'alert_msg_img' => $alert_msg_img,
106 'alert_msg_a' => $alert_msg_a,
107 'alert_msg_pb' => $alert_msg_pb,
108 'alert_msg_input' => $alert_msg_input,
109 'alert_msg_h' => $alert_msg_h,
110 'alert_msg_textarea' => $alert_msg_textarea,
111 'alert_msg_emptyspaces' => $alert_msg_emptyspaces,
112 'prnt_scr_msg' => $prnt_scr_msg
113 );
114
115 if(get_option('wccp_settings') !== null) {
116 update_option( 'wccp_settings' , $wccp_settings );
117 } else {
118 $deprecated = '';
119 $autoload = 'yes';
120 add_option( 'wccp_settings', $wccp_settings, $deprecated, $autoload );
121 }
122 $new_url = "?page=wccpoptionspro";
123 header("Location: $new_url");
124 }
125
126 $wccp_settings = wccp_read_options();
127 ?>
128 <div id="wpccp_subscribe" class="notice notice-info is-dismissible">
129 <?php $admin_email_wccp = get_bloginfo("admin_email"); ?>
130 <table style="background-image:url(<?php echo $pluginsurl ?>/images/ad.png);background-repeat:no-repeat;" border="0" width="100%" cellspacing="0" cellpadding="0">
131 <tr>
132 <td><h2 style="background-color:#FFFFFF;padding:3px;" class="alert-heading"><?php _e("WP Content Protection Plugin Group", 'wp-content-copy-protector') ?></h2></td>
133 <td rowspan="2">
134 <p align="center"><a href="#" onclick="wpccp_dismiss_notice()"><?php _e('Dismiss', 'wp-content-copy-protector'); ?> </a></td>
135 </tr>
136 <tr>
137 <td style="padding-left: 77px;">
138 <h4>
139 <?php echo __("Begin your adventure to improve your WordPress website, Also you will win a ", 'wp-content-copy-protector') . ' <b style="color:red">' . __("discount codes" , 'wp-content-copy-protector') . '</b>'; ?>
140 <input type="text" id="admin_email_wccp" name= "admin_email_wccp" value="<?php echo $admin_email_wccp; ?>" />
141 <button type="button" class="btn btn-primary wpccp_subscribe_btn" onclick='wpccp_open_subscribe_page();'> <?php _e("Start it!", 'wp-content-copy-protector'); ?> </button>
142 </h4>
143 </td>
144 </tr>
145 </table>
146 </div>
147 <script>
148 function wpccp_dismiss_notice()
149 {
150 localStorage.setItem('wpccp_subscribed', 'wpccp_subsbc_user');
151 document.getElementById("wpccp_subscribe").style.display="none";
152 }
153
154 function wpccp_open_subscribe_page()
155 {
156 if(localStorage.getItem('wpccp_subscribed') !='wpccp_subsbc_user')
157 {
158 var admin_email_wccp = document.getElementById('admin_email_wccp').value;
159 window.open('https://www.wp-buy.com/wpccp-subscribe/?email='+admin_email_wccp,'_blank');
160 }
161 }
162
163 if(localStorage.getItem('wpccp_subscribed') =='wpccp_subsbc_user')
164 {
165 document.getElementById("wpccp_subscribe").style.display="none";
166 }
167 </script>
168 <div id="aio_admin_main">
169 <p style="margin: 20px 0 20px;font-size: 16px;font-weight: bold;color: rgba(30,140,190,.8);">WP Content Copy Protection &amp; No Right Click (FREE)
170 <font color="#0909FF"><u>
171 <a target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/?src=title">
172 <font color="#0909FF"><?php _e('Enable PRO features','wp-content-copy-protector'); ?></font></a></u></font>
173 </p>
174 <form method="POST">
175 <input type="hidden" value="update" name="action">
176 <?php wp_nonce_field('make_form_nonce_action','make_this_form_verified_nonce'); ?>
177 <div class="simpleTabs">
178 <ul class="simpleTabsNavigation">
179 <li><a href="#"><?php _e('Main Settings','wp-content-copy-protector'); ?></a></li>
180 <li><a href="#"><?php _e('Premium RightClick Protection','wp-content-copy-protector'); ?></a></li>
181 <li><a href="#"><?php _e('Premium Protection by CSS','wp-content-copy-protector'); ?></a></li>
182 <li><a href="#"><?php _e('More with pro','wp-content-copy-protector'); ?></a></li>
183 </ul>
184 <div class="simpleTabsContent">
185 <table border="0" width="100%" cellspacing="0" cellpadding="0">
186 <tr>
187 <td width="77%">
188 <h4><?php _e('Copy Protection using JavaScript','wp-content-copy-protector'); ?> (<font color="#008000"><?php _e('Basic Layer','wp-content-copy-protector'); ?></font>):</h4>
189 <p><font face="Tahoma" size="2"><?php _e('This is the basic protection layer that uses <u>JavaScript</u> to protect the posts, home page content from being copied by any other web site author.','wp-content-copy-protector'); ?></font></p>
190 <table border="0" width="100%" cellspacing="0" cellpadding="0">
191 <tr>
192 <td width="60%">
193 <div style="float: auto;padding: 4px" id="layer3">
194 <table border="0" width="100%" height="320" cellspacing="0" cellpadding="0">
195 <tr>
196 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Posts protection by <u>JavaScript</u>','wp-content-copy-protector'); ?></font></td>
197 <td>
198 <select size="1" name="single_posts_protection">
199 <?php
200 if ($wccp_settings['single_posts_protection'] == 'Enabled')
201 {
202 echo '<option selected value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
203 echo '<option value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
204 }
205 else
206 {
207 echo '<option value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
208 echo '<option selected value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
209 }
210 ?>
211 </select>
212 </td>
213 <td>
214 <p><font face="Tahoma" size="2"><?php _e('For single posts content','wp-content-copy-protector'); ?></font></p></td>
215 </tr>
216 <tr>
217 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Homepage protection by <u>JavaScript</u>','wp-content-copy-protector'); ?></font></td>
218 <td>
219 <select size="1" name="home_page_protection">
220 <?php
221 if ($wccp_settings['home_page_protection'] == 'Enabled')
222 {
223 echo '<option selected value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
224 echo '<option value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
225 }
226 else
227 {
228 echo '<option value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
229 echo '<option selected value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
230 }
231 ?>
232 </select>
233 </td>
234 <td>
235 <p><font face="Tahoma" size="2"><?php _e('Don\'t copy any thing! even from my homepage','wp-content-copy-protector'); ?></font></td>
236 </tr>
237 <tr>
238 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Static page\'s protection','wp-content-copy-protector'); ?></font></td>
239 <td>
240 <select size="1" name="page_protection">
241 <?php
242 if ($wccp_settings['page_protection'] == 'Enabled')
243 {
244 echo '<option selected value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
245 echo '<option value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
246 }
247 else
248 {
249 echo '<option selected value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
250 echo '<option value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
251 }
252 ?>
253 </select></td>
254 <td>
255 <p><font face="Tahoma" size="2"><?php _e('Use Premium Settings tab to customize more options','wp-content-copy-protector'); ?></font></td>
256 </tr>
257 <tr>
258 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Plugin icon on top admin bar','wp-content-copy-protector'); ?></font></td>
259 <td>
260 <select size="1" name="top_bar_icon_btn">
261 <?php
262 //Check if Hidden first, because default value is Visible
263 if (array_key_exists("top_bar_icon_btn",$wccp_settings) && $wccp_settings['top_bar_icon_btn'] == 'Hidden')
264 {
265 echo '<option selected value="Hidden">'. __('Hidden','wp-content-copy-protector') .'</option>';
266 echo '<option value="Visible">'. __('Visible','wp-content-copy-protector') .'</option>';
267 }
268 else
269 {
270 echo '<option selected value="Visible">'. __('Visible','wp-content-copy-protector') .'</option>';
271 echo '<option value="Hidden">'. __('Hidden','wp-content-copy-protector') .'</option>';
272 }
273 ?>
274 </select></td>
275 <td>
276 <p><font face="Tahoma" size="2"><?php _e('Show/Hide the plugin icon on the top admin bar','wp-content-copy-protector'); ?></font></td>
277 </tr>
278 <tr>
279 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Exclude <u>Admin</u> from protection','wp-content-copy-protector'); ?></font></td>
280 <td width="88px">
281 <p align="center"><a style="color:#FF0000;" target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/?src=exclude_admin">
282 <?php _e('Premium','wp-content-copy-protector'); ?></a></td>
283 <td>
284 <font face="Tahoma" size="2"><?php _e('If <u>Yes</u>, The protection functions will be inactive for the admin when he is logged in','wp-content-copy-protector'); ?></font></td>
285 </tr>
286 <tr>
287 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Selection disabled message','wp-content-copy-protector'); ?></font></td>
288 <td colspan="2">
289 <table border="0" width="59%" cellspacing="0" cellpadding="0">
290 <tr>
291 <td>
292 <input type="text" style="width: 100%;" placeholder="Enter something" class="form-control" name="smessage" value="<?php echo $wccp_settings['smessage']; ?>"></td>
293 </tr>
294 </table>
295 </td>
296 </tr>
297 <tr>
298 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Print preview message','wp-content-copy-protector'); ?></font></td>
299 <td colspan="2">
300 <table border="0" width="99%" cellspacing="0" cellpadding="0">
301 <tr>
302 <td>
303 <textarea placeholder="Enter something" style="height: 110px; width: 100%;" class="form-control" name="prnt_scr_msg"><?php echo $wccp_settings['prnt_scr_msg']; ?></textarea></td>
304 </tr>
305 </table>
306 </td>
307 </tr>
308 </table></div>
309 </td>
310 </tr>
311 </table>
312 </td>
313 </tr>
314 </table></div>
315 <div class="simpleTabsContent">
316 <h4><?php _e('Copy Protection on RightClick','wp-content-copy-protector'); ?> (<font color="#008000"><?php _e('Premium Layer 2','wp-content-copy-protector'); ?></font>):</h4>
317 <p><font face="Tahoma" size="2"><?php _e('In this protection layer your visitors will be able to <u>right click</u> on a specific page elements only (such as Links as an example)','wp-content-copy-protector'); ?></font></p>
318 <div id="layer4">
319 <table border="0" width="100%" height="361" cellspacing="0" cellpadding="0">
320 <tr>
321 <td height="53" width="21%"><font face="Tahoma" size="2"><?php _e('Disable <u>RightClick</u> on','wp-content-copy-protector'); ?></font></td>
322 <td height="53">
323 <table border="0" width="521" height="100%" cellspacing="1" cellpadding="0">
324 <tr>
325 <td width="161" height="46">
326 <label class="checkbox" for="checkbox1">
327 <font face="Tahoma">
328 <input data-toggle="checkbox" type="checkbox" name="right_click_protection_posts" value="checked" <?php echo $wccp_settings['right_click_protection_posts']; ?>><font size="2"><?php _e('Posts','wp-content-copy-protector'); ?></font></font>
329 </label>
330 </td>
331 <td width="161" height="46">
332 <label class="checkbox" for="checkbox1">
333 <font face="Tahoma">
334 <input data-toggle="checkbox" type="checkbox" name="right_click_protection_homepage" value="checked" <?php echo $wccp_settings['right_click_protection_homepage']; ?>><font size="2"><?php _e('HomePage','wp-content-copy-protector'); ?></font></font>
335 </label>
336 </td>
337 <td width="185" height="46">
338 <label class="checkbox" for="checkbox1">
339 <font face="Tahoma">
340 <input data-toggle="checkbox" type="checkbox" name="right_click_protection_pages" value="checked" <?php echo $wccp_settings['right_click_protection_pages']; ?>><font size="2"><?php _e('Static pages','wp-content-copy-protector'); ?></font></font>
341 </label>
342 </td>
343 </tr>
344 </table>
345 </td>
346 </tr>
347 <tr>
348 <td height="44" colspan="2">
349 <p><font color="#FF0000" face="Tahoma" size="2"><?php _e('Remaining premium options preview image ','wp-content-copy-protector'); ?></font>
350 <img src="<?php echo $pluginsurl ?>/images/click-here-arrow.png" id="irc_mi">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
351 <b><font color="#0909FF"><u>
352 <a target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/?src=layer2">
353 <font color="#0909FF"><?php _e('Preview & Pricing','wp-content-copy-protector'); ?></font></a></u></font></b>
354 </td>
355 </tr>
356 <tr>
357 <td height="264" colspan="2">
358 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
359 <a target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/?src=layer2">
360 <img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/right-click-protection.jpg" style="border: 1px dotted #C0C0C0"></a><p>&nbsp;</td>
361 </tr>
362 </table></div>
363 </div>
364 <div class="simpleTabsContent">
365 <h4><?php _e('Protection by CSS Techniques','wp-content-copy-protector'); ?> (<font color="#008000"><?php _e('Premium Layer 3','wp-content-copy-protector'); ?></font>):</h4>
366 <p><font face="Tahoma" size="2"><?php _e('In this protection layer your website will be protected by some <u>CSS</u> tricks that will word even if <u>JavaScript</u> is disabled from the browser settings','wp-content-copy-protector'); ?></font></p>
367 <table border="0" width="100%" cellspacing="0" cellpadding="0">
368 <tr>
369 <td width="60%">
370 <div style="float: auto;padding: 4px" id="layer5">
371 <table border="0" width="100%" height="232" cellspacing="0" cellpadding="0">
372 <tr>
373 <td width="221" height="74"><font face="Tahoma" size="2"><?php _e('<b>Home Page</b> Protection by CSS','wp-content-copy-protector'); ?></font></td>
374 <td height="74" width="90">
375 <select size="1" name="home_css_protection">
376 <?php
377 if ($wccp_settings['home_css_protection'] == 'Enabled')
378 {
379 echo '<option selected value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
380 echo '<option value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
381 }
382 else
383 {
384 echo '<option value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
385 echo '<option selected value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
386 }
387 ?>
388 </select>
389 </td>
390 <td height="74">
391 <font face="Tahoma" size="2"><?php _e('Protect your Homepage by CSS tricks','wp-content-copy-protector'); ?></font></td>
392 </tr>
393 <tr>
394 <td width="221" height="77"><font face="Tahoma" size="2"><?php _e('<b>Posts</b> Protection by CSS','wp-content-copy-protector'); ?></font></td>
395 <td width="90" align="center">
396 <select size="1" name="posts_css_protection">
397 <?php
398 if ($wccp_settings['posts_css_protection'] == 'Enabled')
399 {
400 echo '<option selected value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
401 echo '<option value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
402 }
403 else
404 {
405 echo '<option value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
406 echo '<option selected value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
407 }
408 ?>
409 </select>
410 </td>
411 <td>
412 <font face="Tahoma" size="2"><?php _e('Protect your single posts by CSS tricks','wp-content-copy-protector'); ?></font> (Pro option - unlocked for free!!)</td>
413 </tr>
414 <tr>
415 <td width="221"><font face="Tahoma" size="2"><?php _e('<b>Pages</b> Protection by CSS','wp-content-copy-protector'); ?></font></td>
416 <td width="90" align="center">
417 <a style="color:#FF0000;" target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/?src=css_protect">
418 <?php _e('Premium','wp-content-copy-protector'); ?></a>
419 </td>
420 <td><font face="Tahoma" size="2"><?php _e('Protect your static pages by CSS tricks','wp-content-copy-protector'); ?></font></td>
421 </tr>
422 </table></div>
423 </td>
424 </tr>
425 </table>
426
427 </div>
428 <div class="simpleTabsContent" id="layer1">
429 <p><font color="#FF0000" face="Tahoma" size="3"><?php _e('Crazy discount offer is now running for a limited time!! You might love it','wp-content-copy-protector'); ?></font>
430 <img src="<?php echo $pluginsurl ?>/images/click-here-arrow.png" id="irc_mi">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
431 <b><font color="#0909FF"><u>
432 <a target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/?src=more">
433 <font color="#0909FF" size="3"><?php _e('See it now','wp-content-copy-protector'); ?></font></a></u></font></b>
434 <a target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/?src=more">
435 <img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/smart-phones-protection.png" style="border: 1px dotted #C0C0C0">
436 </a>
437 <p>&nbsp;</p>
438 <a target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/?src=more">
439 <img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/watermark-adv.jpg" style="border: 1px dotted #C0C0C0">
440 </a>
441 <p></p>
442 <a target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/?src=more">
443 <img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/watermarking-adv-examples.png" style="border: 1px dotted #C0C0C0">
444 </a>
445 <p></p>
446 <p><b><font face="Tahoma" size="2" color="#FFFFFF">
447
448
449 <span style="background-color: #008000"><?php _e('Basic features:','wp-content-copy-protector'); ?></span></font></b></p>
450 <ul>
451 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Protect your content from selection and copy. this plugin makes protecting your posts extremely simple without yelling at your readers','wp-content-copy-protector'); ?></font></li>
452 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('No one can save images from your site.','wp-content-copy-protector'); ?></font></li>
453 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('No right-click or context menu.','wp-content-copy-protector'); ?></font></li>
454 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Show alert message, Image Ad, or HTML Ad on saving images or right-click.','wp-content-copy-protector'); ?></font></li>
455 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Disable the following keys','wp-content-copy-protector'); ?> CTRL+A, CTRL+C, CTRL+X, CTRL+S, or CTRL+V.</font></li>
456 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Advanced and easy to use control panel.','wp-content-copy-protector'); ?></font></li>
457 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('No one can right-click images on your site if you want','wp-content-copy-protector'); ?></font></li>
458 </ul>
459 <p><b><font face="Tahoma" size="2" color="#FFFFFF">
460 <span style="background-color: #5B2473"><?php _e('Premium features:','wp-content-copy-protector'); ?></span></font></b></p>
461 <ul>
462 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Get full control over Right-click or context menu','wp-content-copy-protector'); ?></font></li>
463 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Full watermarking','wp-content-copy-protector'); ?></font></li>
464 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Show alert messages, when the user made right click on images, text boxes, links, plain text.. etc','wp-content-copy-protector'); ?></font></li>
465 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Admin can exclude Home page Or Single posts from being copy protected ','wp-content-copy-protector'); ?></font></li>
466 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Admin can disable copy protection for admin users.','wp-content-copy-protector'); ?></font></li>
467 <li><font face="Tahoma" size="2"><?php _e('3 protection layers (JavaScript protection, RightClick protection, CSS protection)','wp-content-copy-protector'); ?></font></li>
468 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Aggressive image protection (it is nearly impossible for expert users to steal your images !!)','wp-content-copy-protector'); ?></font></li>
469 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Compatible with all major theme frameworks','wp-content-copy-protector'); ?></font></li>
470 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Compatible with all major browsers','wp-content-copy-protector'); ?></font></li>
471 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Tested in IE9, IE10, edge, Firefox, Google Chrome, Opera, safari','wp-content-copy-protector'); ?></font></li>
472 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Disables image drag and drop function','wp-content-copy-protector'); ?></font></li>
473 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Works on smartphones.','wp-content-copy-protector'); ?></font></li>
474 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Ability to set varying levels of protection per page or post.','wp-content-copy-protector'); ?></font></li>
475 </ul>
476
477
478 <p><a target="_blank" href="https://www.wp-buy.com/wpccp-subscribe">Subscribe</a> to our mailing list to get flash discounts</p>
479 </div>
480 </div><!-- simple tabs div end -->
481 <div style="width:97%;" class="">
482 <div class="row justify-content-end form-btns">
483 <div class="col-15-auto"><input type="submit" class="btn wccp-form-button gray-btn" value="<?php _e('Restore defaults','wp-content-copy-protector'); ?>" name="Restore_defaults"></div>
484 <div class="col-15-auto"><input type="button" class="btn wccp-form-button blue-btn" value="<?php _e('Preview alert message','wp-content-copy-protector'); ?>" alt="Use CTRL+F5 after saving" onclick="show_wpcp_message('<?php _e('This is a preview message (do not forget to save changes)','wp-content-copy-protector'); ?>');" name="B5"></div>
485 <div class="col-15-auto"><input type="submit" class="btn wccp-form-button green-btn" value=" <?php _e('Save Settings','wp-content-copy-protector'); ?> " name="Save_settings"></div>
486 </div></div>
487 </form>
488 </div>
489 <style>
490 #aio_admin_main {
491 padding:10px;
492 margin: 10px;
493 background-color: #ffffff;
494 border:1px solid #EBDDE2;
495 display: relative;
496 overflow: auto;
497 }
498 .inner_block{
499 height: 370px;
500 display: inline;
501 min-width:770px;
502 }
503 #donate{
504 background-color: #EEFFEE;
505 border: 1px solid #66DD66;
506 border-radius: 10px 10px 10px 10px;
507 height: 58px;
508 padding: 10px;
509 margin: 15px;
510 }
511 .text-font {
512 color: #1ABC9C;
513 font-size: 14px;
514 line-height: 1.5;
515 padding-left: 3px;
516 transition: color 0.25s linear 0s;
517 }
518 .text-font:hover {
519 opacity: 1;
520 transition: color 0.25s linear 0s;
521 }
522 .simpleTabsContent{
523 border: 1px solid #E9E9E9;
524 padding: 4px;
525 }
526 div.simpleTabsContent{
527 margin-top:0;
528 border: 1px solid #E0E0E0;
529 display: none;
530 height: 100%;
531 min-height: 400px;
532 padding: 5px 15px 15px;
533 }
534
535 .size-full {
536 height: auto;
537 max-width: 100%;
538 }
539
540 .wccp-form-button {
541 color: white;
542 padding: 12px 28px;
543 text-align: center;
544 text-decoration: none;
545 display: inline-block;
546 font-size: 16px;
547 cursor: pointer;
548 transition-duration: 0.4s;
549 border: 2px solid;
550 border-radius: 5px;
551 }
552
553 .wccp-form-button:hover {background-color: white;}
554
555 .green-btn {background-color: #4CAF50; border-color: #4CAF50;} /* Green */
556 .green-btn:hover {color: #4CAF50;}
557
558 .blue-btn {background-color: #008CBA; border-color: #008CBA;} /* Blue */
559 .blue-btn:hover {color: #008CBA;}
560
561 .red-btn {background-color: #f44336; border-color: #f44336;} /* Red */
562 .red-btn:hover {color: #f44336;}
563
564 .gray-btn {background-color: #e7e7e7; color: black; border-color: #e7e7e7;} /* Gray */
565 .gray-btn:hover {color: #black;}
566
567 .black-btn {background-color: #555555; border-color: #555555;} /* Black */
568 .black-btn:hover {color: #555555;}
569
570 .form-btns .btn{
571 margin-right: 5px;
572 float: right;
573 }
574 @media (max-width: 435px)
575 {
576 .form-btns .btn
577 {
578 width:95% !important;
579 }
580 .form-btns
581 {
582 -webkit-box-pack: center!important;
583 -ms-flex-pack: center!important;
584 justify-content: center!important;
585 }
586 .form-btns div
587 {
588 width: 100%;
589 }
590
591 }
592 @media (min-width: 436px) and (max-width: 646px)
593 {
594 .form-btns .btn
595 {
596 width:390px !important;
597 }
598 .form-btns
599 {
600 -webkit-box-pack: center!important;
601 -ms-flex-pack: center!important;
602 justify-content: center!important;
603 }
604 }
605 @media (min-width: 647px) and (min-width: 768px)
606 {
607 .form-btns .btn
608 {
609 margin-right: 5px;
610 }
611 }
612 </style>