PluginProbe ʕ •ᴥ•ʔ
WP Content Copy Protection & No Right Click / 2.6
WP Content Copy Protection & No Right Click v2.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 5 years ago images 5 years ago js 5 years ago languages 5 years ago admin-core.php 5 years ago notifications.php 5 years ago preventer-index.php 5 years ago readme.txt 5 years ago right-click-protection.jpg 5 years ago the_globals.php 5 years ago watermark-adv.jpg 5 years ago watermarking-adv-examples.png 5 years ago
admin-core.php
505 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 $post_action = '';
11 if(isset($_POST["action"])) $post_action = sanitize_text_field($_POST["action"]);
12 if($post_action == 'update')
13 {
14 //----------------------------------------------------list the options array values
15 //----------------------------------------------------list the options array values
16 $single_posts_protection = '';
17 if(isset($_POST["single_posts_protection"])) $single_posts_protection = sanitize_text_field($_POST["single_posts_protection"]);
18 $home_page_protection = '';
19 if(isset($_POST["home_page_protection"])) $home_page_protection = sanitize_text_field($_POST["home_page_protection"]);
20 $page_protection = '';
21 if(isset($_POST["page_protection"])) $page_protection = sanitize_text_field($_POST["page_protection"]);
22
23 $exclude_admin_from_protection = '';
24 if(isset($_POST["exclude_admin_from_protection"])) $exclude_admin_from_protection = sanitize_text_field($_POST["exclude_admin_from_protection"]);
25
26 $home_css_protection = '';
27 if(isset($_POST["home_css_protection"])) $home_css_protection = sanitize_text_field($_POST["home_css_protection"]);
28 $posts_css_protection = '';
29 if(isset($_POST["posts_css_protection"])) $posts_css_protection = sanitize_text_field($_POST["posts_css_protection"]);
30 $pages_css_protection = '';
31 if(isset($_POST["pages_css_protection"])) $pages_css_protection = sanitize_text_field($_POST["pages_css_protection"]);
32
33 $right_click_protection_posts = '';
34 if(isset($_POST["right_click_protection_posts"])) $right_click_protection_posts = sanitize_text_field($_POST["right_click_protection_posts"]);
35 $right_click_protection_homepage = '';
36 if(isset($_POST["right_click_protection_homepage"])) $right_click_protection_homepage = sanitize_text_field($_POST["right_click_protection_homepage"]);
37 $right_click_protection_pages = '';
38 if(isset($_POST["right_click_protection_pages"])) $right_click_protection_pages = sanitize_text_field($_POST["right_click_protection_pages"]);
39
40 $img = '';
41 if(isset($_POST["img"])) $img = sanitize_text_field($_POST["img"]);
42 $a = '';
43 if(isset($_POST["a"])) $a = sanitize_text_field($_POST["a"]);
44 $pb = '';
45 if(isset($_POST["pb"])) $pb = sanitize_text_field($_POST["pb"]);
46 $input = '';
47 if(isset($_POST["input"])) $input = sanitize_text_field($_POST["input"]);
48 $h = '';
49 if(isset($_POST["h"])) $h = sanitize_text_field($_POST["h"]);
50 $textarea = '';
51 if(isset($_POST["textarea"])) $textarea = sanitize_text_field($_POST["textarea"]);
52 $emptyspaces = '';
53 if(isset($_POST["emptyspaces"])) $emptyspaces = sanitize_text_field($_POST["emptyspaces"]);
54
55 $smessage = '';
56 if(isset($_POST["smessage"])) $smessage = sanitize_text_field($_POST["smessage"]);
57 $alert_msg_img = '';
58 if(isset($_POST["alert_msg_img"])) $alert_msg_img = sanitize_text_field($_POST["alert_msg_img"]);
59 $alert_msg_a = '';
60 if(isset($_POST["alert_msg_a"])) $alert_msg_a = sanitize_text_field($_POST["alert_msg_a"]);
61 $alert_msg_pb = '';
62 if(isset($_POST["alert_msg_pb"])) $alert_msg_pb = sanitize_text_field($_POST["alert_msg_pb"]);
63 $alert_msg_input = '';
64 if(isset($_POST["alert_msg_input"])) $alert_msg_input = sanitize_text_field($_POST["alert_msg_input"]);
65 $alert_msg_h = '';
66 if(isset($_POST["alert_msg_h"])) $alert_msg_h = sanitize_text_field($_POST["alert_msg_h"]);
67 $alert_msg_textarea = '';
68 if(isset($_POST["alert_msg_textarea"])) $alert_msg_textarea = sanitize_text_field($_POST["alert_msg_textarea"]);
69 $alert_msg_emptyspaces = '';
70 if(isset($_POST["alert_msg_emptyspaces"])) $alert_msg_emptyspaces = sanitize_text_field($_POST["alert_msg_emptyspaces"]);
71 $prnt_scr_msg = '';
72 if(isset($_POST["prnt_scr_msg"])) $prnt_scr_msg = sanitize_text_field($_POST["prnt_scr_msg"]);
73
74 //----------------------------------------------------Get the options array values
75 $wccp_settings =
76 Array (
77 'single_posts_protection' => $single_posts_protection, // prevent content copy, take 2 parameters
78 'home_page_protection' => $home_page_protection, // PROTECT THE HOME PAGE OR NOT
79 'page_protection' => $page_protection, // protect pages by javascript
80 'right_click_protection_posts' => $right_click_protection_posts, //
81 'right_click_protection_homepage' => $right_click_protection_homepage, //
82 'right_click_protection_pages' => $right_click_protection_pages, //
83 'home_css_protection' => $home_css_protection, // premium option
84 'posts_css_protection' => $posts_css_protection, // premium option (unlocked and become free option)
85 'pages_css_protection' => 'No', // premium option
86 'exclude_admin_from_protection' => 'No', // premium option
87 'img' => '', // premium option
88 'a' => '', // premium option
89 'pb' => '', // premium option
90 'input' => '', // premium option
91 'h' => '', // premium option
92 'textarea' => '', // premium option
93 'emptyspaces' => '', // premium option
94 'smessage' => $smessage,
95 'alert_msg_img' => $alert_msg_img,
96 'alert_msg_a' => $alert_msg_a,
97 'alert_msg_pb' => $alert_msg_pb,
98 'alert_msg_input' => $alert_msg_input,
99 'alert_msg_h' => $alert_msg_h,
100 'alert_msg_textarea' => $alert_msg_textarea,
101 'alert_msg_emptyspaces' => $alert_msg_emptyspaces,
102 'prnt_scr_msg' => $prnt_scr_msg
103 );
104
105 if ($wccp_settings != '' ) {
106 update_option( 'wccp_settings' , $wccp_settings );
107 } else {
108 $deprecated = ' ';
109 $autoload = 'no';
110 add_option( 'wccp_settings', $wccp_settings, $deprecated, $autoload );
111 }
112 }else //no update action
113 {
114 $wccp_settings = wccp_read_options();
115 }
116
117 ?>
118 <style>
119 #aio_admin_main {
120 padding:10px;
121 margin: 10px;
122 background-color: #ffffff;
123 border:1px solid #EBDDE2;
124 display: relative;
125 overflow: auto;
126 }
127 .inner_block{
128 height: 370px;
129 display: inline;
130 min-width:770px;
131 }
132 #donate{
133 background-color: #EEFFEE;
134 border: 1px solid #66DD66;
135 border-radius: 10px 10px 10px 10px;
136 height: 58px;
137 padding: 10px;
138 margin: 15px;
139 }
140 .text-font {
141 color: #1ABC9C;
142 font-size: 14px;
143 line-height: 1.5;
144 padding-left: 3px;
145 transition: color 0.25s linear 0s;
146 }
147 .text-font:hover {
148 opacity: 1;
149 transition: color 0.25s linear 0s;
150 }
151 .simpleTabsContent{
152 border: 1px solid #E9E9E9;
153 padding: 4px;
154 }
155 div.simpleTabsContent{
156 margin-top:0;
157 border: 1px solid #E0E0E0;
158 display: none;
159 height: 100%;
160 min-height: 400px;
161 padding: 5px 15px 15px;
162 }
163
164 .size-full {
165 height: auto;
166 max-width: 100%;
167 }
168 </style>
169 <div id="wpccp_subscribe" class="notice notice-info is-dismissible">
170 <?php $admin_email_wccp = get_bloginfo("admin_email"); ?>
171 <table style="background-image:url(<?php echo $pluginsurl ?>/images/ad.png);background-repeat:no-repeat;" border="0" width="100%" cellspacing="0" cellpadding="0">
172 <tr>
173 <td><h2 style="background-color:#FFFFFF;padding:3px;" class="alert-heading"><?php _e("WP Content Protection Plugin Group", 'wp-content-copy-protector') ?></h2></td>
174 <td rowspan="2">
175 <p align="center"><a href="#" onclick="wpccp_dismiss_notice()"><?php _e('Dismiss', 'wp-content-copy-protector'); ?> </a></td>
176 </tr>
177 <tr>
178 <td style="padding-left: 77px;">
179 <h4>
180 <?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>'; ?>
181 <input type="text" id="admin_email_wccp" name= "admin_email_wccp" value="<?php echo $admin_email_wccp; ?>" />
182 <button type="button" class="btn btn-primary wpccp_subscribe_btn" onclick='wpccp_open_subscribe_page();'> <?php _e("Start it!", 'wp-content-copy-protector'); ?> </button>
183 </h4>
184 </td>
185 </tr>
186 </table>
187 </div>
188 <script>
189 function wpccp_dismiss_notice()
190 {
191 localStorage.setItem('wpccp_subscribed', 'wpccp_subsbc_user');
192 document.getElementById("wpccp_subscribe").style.display="none";
193 }
194
195 function wpccp_open_subscribe_page()
196 {
197 if(localStorage.getItem('wpccp_subscribed') !='wpccp_subsbc_user')
198 {
199 var admin_email_wccp = document.getElementById('admin_email_wccp').value;
200 window.open('https://www.wp-buy.com/wpccp-subscribe/?email='+admin_email_wccp,'_blank');
201 }
202 }
203
204 if(localStorage.getItem('wpccp_subscribed') =='wpccp_subsbc_user')
205 {
206 document.getElementById("wpccp_subscribe").style.display="none";
207 }
208 </script>
209 <div id="aio_admin_main">
210 <form method="POST">
211 <input type="hidden" value="update" name="action">
212 <div class="simpleTabs">
213 <ul class="simpleTabsNavigation">
214 <li><a href="#"><?php _e('Main Settings','wp-content-copy-protector'); ?></a></li>
215 <li><a href="#"><?php _e('Premium RightClick Protection','wp-content-copy-protector'); ?></a></li>
216 <li><a href="#"><?php _e('Premium Protection by CSS','wp-content-copy-protector'); ?></a></li>
217 <li><a href="#"><?php _e('More with pro','wp-content-copy-protector'); ?></a></li>
218 </ul>
219 <div class="simpleTabsContent">
220 <table border="0" width="100%" cellspacing="0" cellpadding="0">
221 <tr>
222 <td width="77%">
223 <h4><?php _e('Copy Protection using JavaScript','wp-content-copy-protector'); ?> (<font color="#008000"><?php _e('Basic Layer','wp-content-copy-protector'); ?></font>):</h4>
224 <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>
225 <table border="0" width="100%" cellspacing="0" cellpadding="0">
226 <tr>
227 <td width="60%">
228 <div style="float: auto;padding: 4px" id="layer3">
229 <table border="0" width="100%" height="320" cellspacing="0" cellpadding="0">
230 <tr>
231 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Posts protection by <u>JavaScript</u>','wp-content-copy-protector'); ?></font></td>
232 <td>
233 <select size="1" name="single_posts_protection">
234 <?php
235 if ($wccp_settings['single_posts_protection'] == 'Enabled')
236 {
237 echo '<option selected value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
238 echo '<option value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
239 }
240 else
241 {
242 echo '<option value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
243 echo '<option selected value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
244 }
245 ?>
246 </select>
247 </td>
248 <td>
249 <p><font face="Tahoma" size="2"><?php _e('For single posts content','wp-content-copy-protector'); ?></font></p></td>
250 </tr>
251 <tr>
252 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Homepage protection by <u>JavaScript</u>','wp-content-copy-protector'); ?></font></td>
253 <td>
254 <select size="1" name="home_page_protection">
255 <?php
256 if ($wccp_settings['home_page_protection'] == 'Enabled')
257 {
258 echo '<option selected value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
259 echo '<option value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
260 }
261 else
262 {
263 echo '<option value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
264 echo '<option selected value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
265 }
266 ?>
267 </select>
268 </td>
269 <td>
270 <p><font face="Tahoma" size="2"><?php _e('Don\'t copy any thing! even from my homepage','wp-content-copy-protector'); ?></font></td>
271 </tr>
272 <tr>
273 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Static page\'s protection','wp-content-copy-protector'); ?></font></td>
274 <td>
275 <select size="1" name="page_protection">
276 <?php
277 if ($wccp_settings['page_protection'] == 'Enabled')
278 {
279 echo '<option selected value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
280 echo '<option value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
281 }
282 else
283 {
284 echo '<option selected value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
285 echo '<option value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
286 }
287 ?>
288 </select></td>
289 <td>
290 <p><font face="Tahoma" size="2"><?php _e('Use Premium Settings tab to customize more options','wp-content-copy-protector'); ?></font></td>
291 </tr>
292 <tr>
293 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Exclude <u>Admin</u> from protection','wp-content-copy-protector'); ?></font></td>
294 <td width="88px">
295 <p align="center"><font color="#FF0000"><?php _e('Premium','wp-content-copy-protector'); ?></font></td>
296 <td>
297 <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>
298 </tr>
299 <tr>
300 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Selection disabled message','wp-content-copy-protector'); ?></font></td>
301 <td colspan="2">
302 <table border="0" width="59%" cellspacing="0" cellpadding="0">
303 <tr>
304 <td>
305 <input type="text" style="width: 100%;" placeholder="Enter something" class="form-control" name="smessage" value="<?php echo $wccp_settings['smessage']; ?>"></td>
306 </tr>
307 </table>
308 </td>
309 </tr>
310 <tr>
311 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Print preview message','wp-content-copy-protector'); ?></font></td>
312 <td colspan="2">
313 <table border="0" width="99%" cellspacing="0" cellpadding="0">
314 <tr>
315 <td>
316 <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>
317 </tr>
318 </table>
319 </td>
320 </tr>
321 </table></div>
322 </td>
323 </tr>
324 </table>
325 </td>
326 </tr>
327 </table></div>
328 <div class="simpleTabsContent">
329 <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>
330 <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>
331 <div id="layer4">
332 <table border="0" width="100%" height="361" cellspacing="0" cellpadding="0">
333 <tr>
334 <td height="53" width="21%"><font face="Tahoma" size="2"><?php _e('Disable <u>RightClick</u> on','wp-content-copy-protector'); ?></font></td>
335 <td height="53">
336 <table border="0" width="521" height="100%" cellspacing="1" cellpadding="0">
337 <tr>
338 <td width="161" height="46">
339 <label class="checkbox" for="checkbox1">
340 <font face="Tahoma">
341 <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>
342 </label>
343 </td>
344 <td width="161" height="46">
345 <label class="checkbox" for="checkbox1">
346 <font face="Tahoma">
347 <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>
348 </label>
349 </td>
350 <td width="185" height="46">
351 <label class="checkbox" for="checkbox1">
352 <font face="Tahoma">
353 <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>
354 </label>
355 </td>
356 </tr>
357 </table>
358 </td>
359 </tr>
360 <tr>
361 <td height="44" colspan="2">
362 <p><font color="#FF0000" face="Tahoma" size="2"><?php _e('Remaining premium options preview image ','wp-content-copy-protector'); ?></font>
363 <img src="<?php echo $pluginsurl ?>/images/click-here-arrow.png" id="irc_mi">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
364 <b><font color="#0909FF"><u>
365 <a href="http://www.wp-buy.com/product/wp-content-copy-protection-pro/">
366 <font color="#0909FF"><?php _e('Preview & Pricing','wp-content-copy-protector'); ?></font></a></u></font></b>
367 </td>
368 </tr>
369 <tr>
370 <td height="264" colspan="2">
371 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
372 <a href="http://www.wp-buy.com/product/wp-content-copy-protection-pro/">
373 <img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/right-click-protection.jpg" style="border: 1px dotted #C0C0C0"></a><p>&nbsp;</td>
374 </tr>
375 </table></div>
376 </div>
377 <div class="simpleTabsContent">
378 <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>
379 <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>
380 <table border="0" width="100%" cellspacing="0" cellpadding="0">
381 <tr>
382 <td width="60%">
383 <div style="float: auto;padding: 4px" id="layer5">
384 <table border="0" width="100%" height="232" cellspacing="0" cellpadding="0">
385 <tr>
386 <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>
387 <td height="74" width="90">
388 <select size="1" name="home_css_protection">
389 <?php
390 if ($wccp_settings['home_css_protection'] == 'Enabled')
391 {
392 echo '<option selected value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
393 echo '<option value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
394 }
395 else
396 {
397 echo '<option value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
398 echo '<option selected value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
399 }
400 ?>
401 </select>
402 </td>
403 <td height="74">
404 <font face="Tahoma" size="2"><?php _e('Protect your Homepage by CSS tricks','wp-content-copy-protector'); ?></font></td>
405 </tr>
406 <tr>
407 <td width="221" height="77"><font face="Tahoma" size="2"><?php _e('<b>Posts</b> Protection by CSS','wp-content-copy-protector'); ?></font></td>
408 <td width="90" align="center">
409 <select size="1" name="posts_css_protection">
410 <?php
411 if ($wccp_settings['posts_css_protection'] == 'Enabled')
412 {
413 echo '<option selected value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
414 echo '<option value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
415 }
416 else
417 {
418 echo '<option value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
419 echo '<option selected value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
420 }
421 ?>
422 </select>
423 </td>
424 <td>
425 <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>
426 </tr>
427 <tr>
428 <td width="221"><font face="Tahoma" size="2"><?php _e('<b>Pages</b> Protection by CSS','wp-content-copy-protector'); ?></font></td>
429 <td width="90" align="center">
430 <font color="#FF0000"><?php _e('Premium','wp-content-copy-protector'); ?></font>
431 </td>
432 <td><font face="Tahoma" size="2"><?php _e('Protect your static pages by CSS tricks','wp-content-copy-protector'); ?></font></td>
433 </tr>
434 </table></div>
435 </td>
436 </tr>
437 </table>
438
439 </div>
440 <div class="simpleTabsContent" id="layer1">
441 <a href="http://www.wp-buy.com/product/wp-content-copy-protection-pro/">
442 <img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/smart-phones-protection.png" style="border: 1px dotted #C0C0C0">
443 </a>
444 <p></p>
445 <a href="http://www.wp-buy.com/product/wp-content-copy-protection-pro/">
446 <img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/watermark-adv.jpg" style="border: 1px dotted #C0C0C0">
447 </a>
448 <p></p>
449 <a href="http://www.wp-buy.com/product/wp-content-copy-protection-pro/">
450 <img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/watermarking-adv-examples.png" style="border: 1px dotted #C0C0C0">
451 </a>
452 <p></p>
453 <p><b><font face="Tahoma" size="2" color="#FFFFFF">
454 <span style="background-color: #008000"><?php _e('Basic features:','wp-content-copy-protector'); ?></span></font></b></p>
455 <ul>
456 <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>
457 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('No one can save images from your site.','wp-content-copy-protector'); ?></font></li>
458 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('No right click or context menu.','wp-content-copy-protector'); ?></font></li>
459 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Show alert message, Image Ad or HTML Ad on save images or right click.','wp-content-copy-protector'); ?></font></li>
460 <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>
461 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Advanced and easy to use control panel.','wp-content-copy-protector'); ?></font></li>
462 <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>
463 </ul>
464 <p><b><font face="Tahoma" size="2" color="#FFFFFF">
465 <span style="background-color: #5B2473"><?php _e('Premium features:','wp-content-copy-protector'); ?></span></font></b></p>
466 <ul>
467 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Get full Control on Right click or context menu','wp-content-copy-protector'); ?></font></li>
468 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Full watermarking','wp-content-copy-protector'); ?></font></li>
469 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Show alert messages, when user made right click on images, text boxes, links, plain text.. etc','wp-content-copy-protector'); ?></font></li>
470 <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>
471 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Admin can disable copy protection for admin users.','wp-content-copy-protector'); ?></font></li>
472 <li><font face="Tahoma" size="2"><?php _e('3 protection layers (JavaScript protection, RightClick protection, CSS protection)','wp-content-copy-protector'); ?></font></li>
473 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Aggressive image protection (its near impossible for expert users to steal your images !!)','wp-content-copy-protector'); ?></font></li>
474 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Compatible with all major theme frameworks','wp-content-copy-protector'); ?></font></li>
475 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Compatible with all major browsers','wp-content-copy-protector'); ?></font></li>
476 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Tested in IE9, IE10, Firefox, Google Chrome, Opera','wp-content-copy-protector'); ?></font></li>
477 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Disables image drag and drop function','wp-content-copy-protector'); ?></font></li>
478 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Works on smart phones.','wp-content-copy-protector'); ?></font></li>
479 <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>
480 </ul>
481 <p><a href="https://www.wp-buy.com/wpccp-subscribe">Subscribe</a> to our mailing list to get flash discounts</p>
482 </div>
483 </div><!-- simple tabs div end -->
484 <p align="right"><input class="btn btn-success" type="submit" value=" <?php _e('Save Settings','wp-content-copy-protector'); ?> " name="B4" style="width: 193; height: 29;">&nbsp;&nbsp;</p>
485 </form>
486 </div>
487
488 <div id="other-products">
489 <?php
490 $before_url = '';
491 if(is_multisite()) $before_url = "network/";
492 ?>
493 <p>Recommended for you:</p>
494 <a href="<?php echo $before_url ?>plugin-install.php?s=wp-buy+Captchinoo&tab=search&type=term">
495 <img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/other-products/3.gif" style="margin: 10px">
496 </a>
497 <a href="<?php echo $before_url ?>plugin-install.php?s=wp-buy+Login+LockDown+–+Limit+Failed+Login+Attempts&tab=search&type=term">
498 <img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/other-products/4.gif" style="margin: 10px">
499 </a>
500 <style>
501 #other-products a,#other-products a:active,#other-products a:focus{
502 color: #fff;
503 }
504 </style>
505 </div>