PluginProbe ʕ •ᴥ•ʔ
WP Content Copy Protection & No Right Click / 3.7
WP Content Copy Protection & No Right Click v3.7
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 1 month ago images 1 month ago js 1 month ago languages 1 month ago admin-core.php 1 month ago notifications.php 1 month ago preventer-index.php 1 month ago readme.txt 1 month ago right-click-protection.jpg 1 month ago the_globals.php 1 month ago watermark-adv.jpg 1 month ago watermarking-adv-examples.png 1 month ago
admin-core.php
613 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"]) && (isset($_POST["_Restore_defaults"]) && wp_verify_nonce( $_POST[ '_Restore_defaults' ], 'Restore_defaults_nonce' )))
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["_Save_settings"]) && wp_verify_nonce( $_POST[ '_Save_settings' ], 'Save_settings_nonce' )))
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/">
172 <font color="#0909FF"><?php _e('PRO Version','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('Save_settings_nonce','_Save_settings'); ?>
177 <?php wp_nonce_field('Restore_defaults_nonce','_Restore_defaults'); ?>
178 <div class="simpleTabs">
179 <ul class="simpleTabsNavigation">
180 <li><a href="#"><?php _e('Main Settings','wp-content-copy-protector'); ?></a></li>
181 <li><a href="#"><?php _e('Premium RightClick Protection','wp-content-copy-protector'); ?></a></li>
182 <li><a href="#"><?php _e('Premium Protection by CSS','wp-content-copy-protector'); ?></a></li>
183 <li><a href="#"><?php _e('More with pro','wp-content-copy-protector'); ?></a></li>
184 </ul>
185 <div class="simpleTabsContent">
186 <table border="0" width="100%" cellspacing="0" cellpadding="0">
187 <tr>
188 <td width="77%">
189 <h4><?php _e('Copy Protection using JavaScript','wp-content-copy-protector'); ?> (<font color="#008000"><?php _e('Basic Layer','wp-content-copy-protector'); ?></font>):</h4>
190 <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>
191 <table border="0" width="100%" cellspacing="0" cellpadding="0">
192 <tr>
193 <td width="60%">
194 <div style="float: auto;padding: 4px" id="layer3">
195 <table border="0" width="100%" height="320" cellspacing="0" cellpadding="0">
196 <tr>
197 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Posts protection by <u>JavaScript</u>','wp-content-copy-protector'); ?></font></td>
198 <td>
199 <select size="1" name="single_posts_protection">
200 <?php
201 if ($wccp_settings['single_posts_protection'] == 'Enabled')
202 {
203 echo '<option selected value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
204 echo '<option value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
205 }
206 else
207 {
208 echo '<option value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
209 echo '<option selected value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
210 }
211 ?>
212 </select>
213 </td>
214 <td>
215 <p><font face="Tahoma" size="2"><?php _e('For single posts content','wp-content-copy-protector'); ?></font></p></td>
216 </tr>
217 <tr>
218 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Homepage protection by <u>JavaScript</u>','wp-content-copy-protector'); ?></font></td>
219 <td>
220 <select size="1" name="home_page_protection">
221 <?php
222 if ($wccp_settings['home_page_protection'] == 'Enabled')
223 {
224 echo '<option selected value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
225 echo '<option value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
226 }
227 else
228 {
229 echo '<option value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
230 echo '<option selected value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
231 }
232 ?>
233 </select>
234 </td>
235 <td>
236 <p><font face="Tahoma" size="2"><?php _e('Don\'t copy any thing! even from my homepage','wp-content-copy-protector'); ?></font></td>
237 </tr>
238 <tr>
239 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Static page\'s protection','wp-content-copy-protector'); ?></font></td>
240 <td>
241 <select size="1" name="page_protection">
242 <?php
243 if ($wccp_settings['page_protection'] == 'Enabled')
244 {
245 echo '<option selected value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
246 echo '<option value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
247 }
248 else
249 {
250 echo '<option selected value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
251 echo '<option value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
252 }
253 ?>
254 </select></td>
255 <td>
256 <p><font face="Tahoma" size="2"><?php _e('Use Premium Settings tab to customize more options','wp-content-copy-protector'); ?></font></td>
257 </tr>
258 <tr>
259 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Plugin icon on top admin bar','wp-content-copy-protector'); ?></font></td>
260 <td>
261 <select size="1" name="top_bar_icon_btn">
262 <?php
263 //Check if Hidden first, because default value is Visible
264 if (array_key_exists("top_bar_icon_btn",$wccp_settings) && $wccp_settings['top_bar_icon_btn'] == 'Hidden')
265 {
266 echo '<option selected value="Hidden">'. __('Hidden','wp-content-copy-protector') .'</option>';
267 echo '<option value="Visible">'. __('Visible','wp-content-copy-protector') .'</option>';
268 }
269 else
270 {
271 echo '<option selected value="Visible">'. __('Visible','wp-content-copy-protector') .'</option>';
272 echo '<option value="Hidden">'. __('Hidden','wp-content-copy-protector') .'</option>';
273 }
274 ?>
275 </select></td>
276 <td>
277 <p><font face="Tahoma" size="2"><?php _e('Show/Hide the plugin icon on the top admin bar','wp-content-copy-protector'); ?></font></td>
278 </tr>
279 <tr>
280 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Exclude <u>Admin</u> from protection','wp-content-copy-protector'); ?></font></td>
281 <td width="88px">
282 <p align="center"><a style="color:#FF0000;" target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/">
283 <?php _e('Premium','wp-content-copy-protector'); ?></a></td>
284 <td>
285 <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>
286 </tr>
287 <tr>
288 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Selection disabled message','wp-content-copy-protector'); ?></font></td>
289 <td colspan="2">
290 <table border="0" width="59%" cellspacing="0" cellpadding="0">
291 <tr>
292 <td>
293 <input type="text" style="width: 100%;" placeholder="Enter something" class="form-control" name="smessage" value="<?php echo $wccp_settings['smessage']; ?>"></td>
294 </tr>
295 </table>
296 </td>
297 </tr>
298 <tr>
299 <td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Print preview message','wp-content-copy-protector'); ?></font></td>
300 <td colspan="2">
301 <table border="0" width="99%" cellspacing="0" cellpadding="0">
302 <tr>
303 <td>
304 <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>
305 </tr>
306 </table>
307 </td>
308 </tr>
309 </table></div>
310 </td>
311 </tr>
312 </table>
313 </td>
314 </tr>
315 </table></div>
316 <div class="simpleTabsContent">
317 <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>
318 <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>
319 <div id="layer4">
320 <table border="0" width="100%" height="361" cellspacing="0" cellpadding="0">
321 <tr>
322 <td height="53" width="21%"><font face="Tahoma" size="2"><?php _e('Disable <u>RightClick</u> on','wp-content-copy-protector'); ?></font></td>
323 <td height="53">
324 <table border="0" width="521" height="100%" cellspacing="1" cellpadding="0">
325 <tr>
326 <td width="161" height="46">
327 <label class="checkbox" for="checkbox1">
328 <font face="Tahoma">
329 <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>
330 </label>
331 </td>
332 <td width="161" height="46">
333 <label class="checkbox" for="checkbox1">
334 <font face="Tahoma">
335 <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>
336 </label>
337 </td>
338 <td width="185" height="46">
339 <label class="checkbox" for="checkbox1">
340 <font face="Tahoma">
341 <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>
342 </label>
343 </td>
344 </tr>
345 </table>
346 </td>
347 </tr>
348 <tr>
349 <td height="44" colspan="2">
350 <p><font color="#FF0000" face="Tahoma" size="2"><?php _e('Remaining premium options preview image ','wp-content-copy-protector'); ?></font>
351 <img src="<?php echo $pluginsurl ?>/images/click-here-arrow.png" id="irc_mi">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
352 <b><font color="#0909FF"><u>
353 <a target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/">
354 <font color="#0909FF"><?php _e('Preview & Pricing','wp-content-copy-protector'); ?></font></a></u></font></b>
355 </td>
356 </tr>
357 <tr>
358 <td height="264" colspan="2">
359 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
360 <a target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/">
361 <img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/right-click-protection.jpg" style="border: 1px dotted #C0C0C0"></a><p>&nbsp;</td>
362 </tr>
363 </table></div>
364 </div>
365 <div class="simpleTabsContent">
366 <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>
367 <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>
368 <table border="0" width="100%" cellspacing="0" cellpadding="0">
369 <tr>
370 <td width="60%">
371 <div style="float: auto;padding: 4px" id="layer5">
372 <table border="0" width="100%" height="232" cellspacing="0" cellpadding="0">
373 <tr>
374 <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>
375 <td height="74" width="90">
376 <select size="1" name="home_css_protection">
377 <?php
378 if ($wccp_settings['home_css_protection'] == 'Enabled')
379 {
380 echo '<option selected value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
381 echo '<option value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
382 }
383 else
384 {
385 echo '<option value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
386 echo '<option selected value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
387 }
388 ?>
389 </select>
390 </td>
391 <td height="74">
392 <font face="Tahoma" size="2"><?php _e('Protect your Homepage by CSS tricks','wp-content-copy-protector'); ?></font></td>
393 </tr>
394 <tr>
395 <td width="221" height="77"><font face="Tahoma" size="2"><?php _e('<b>Posts</b> Protection by CSS','wp-content-copy-protector'); ?></font></td>
396 <td width="90" align="center">
397 <select size="1" name="posts_css_protection">
398 <?php
399 if ($wccp_settings['posts_css_protection'] == 'Enabled')
400 {
401 echo '<option selected value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
402 echo '<option value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
403 }
404 else
405 {
406 echo '<option value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
407 echo '<option selected value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
408 }
409 ?>
410 </select>
411 </td>
412 <td>
413 <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>
414 </tr>
415 <tr>
416 <td width="221"><font face="Tahoma" size="2"><?php _e('<b>Pages</b> Protection by CSS','wp-content-copy-protector'); ?></font></td>
417 <td width="90" align="center">
418 <a style="color:#FF0000;" target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/">
419 <?php _e('Premium','wp-content-copy-protector'); ?></a>
420 </td>
421 <td><font face="Tahoma" size="2"><?php _e('Protect your static pages by CSS tricks','wp-content-copy-protector'); ?></font></td>
422 </tr>
423 </table></div>
424 </td>
425 </tr>
426 </table>
427
428 </div>
429 <div class="simpleTabsContent" id="layer1">
430 <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>
431 <img src="<?php echo $pluginsurl ?>/images/click-here-arrow.png" id="irc_mi">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
432 <b><font color="#0909FF"><u>
433 <a target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/">
434 <font color="#0909FF" size="3"><?php _e('See it now','wp-content-copy-protector'); ?></font></a></u></font></b>
435 <a target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/">
436 <img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/smart-phones-protection.png" style="border: 1px dotted #C0C0C0">
437 </a>
438 <p>&nbsp;</p>
439 <a target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/">
440 <img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/watermark-adv.jpg" style="border: 1px dotted #C0C0C0">
441 </a>
442 <p></p>
443 <a target="_blank" href="https://www.wp-buy.com/product/wp-content-copy-protection-pro/">
444 <img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/watermarking-adv-examples.png" style="border: 1px dotted #C0C0C0">
445 </a>
446 <p></p>
447 <p><b><font face="Tahoma" size="2" color="#FFFFFF">
448
449
450 <span style="background-color: #008000"><?php _e('Basic features:','wp-content-copy-protector'); ?></span></font></b></p>
451 <ul>
452 <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>
453 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('No one can save images from your site.','wp-content-copy-protector'); ?></font></li>
454 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('No right-click or context menu.','wp-content-copy-protector'); ?></font></li>
455 <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>
456 <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>
457 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Advanced and easy to use control panel.','wp-content-copy-protector'); ?></font></li>
458 <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>
459 </ul>
460 <p><b><font face="Tahoma" size="2" color="#FFFFFF">
461 <span style="background-color: #5B2473"><?php _e('Premium features:','wp-content-copy-protector'); ?></span></font></b></p>
462 <ul>
463 <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>
464 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Full watermarking','wp-content-copy-protector'); ?></font></li>
465 <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>
466 <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>
467 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Admin can disable copy protection for admin users.','wp-content-copy-protector'); ?></font></li>
468 <li><font face="Tahoma" size="2"><?php _e('3 protection layers (JavaScript protection, RightClick protection, CSS protection)','wp-content-copy-protector'); ?></font></li>
469 <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>
470 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Compatible with all major theme frameworks','wp-content-copy-protector'); ?></font></li>
471 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Compatible with all major browsers','wp-content-copy-protector'); ?></font></li>
472 <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>
473 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Disables image drag and drop function','wp-content-copy-protector'); ?></font></li>
474 <li><font style="font-size: 10pt" face="Tahoma"><?php _e('Works on smartphones.','wp-content-copy-protector'); ?></font></li>
475 <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>
476 </ul>
477
478
479 <p><a target="_blank" href="https://www.wp-buy.com/wpccp-subscribe">Subscribe</a> to our mailing list to get flash discounts</p>
480 </div>
481 </div><!-- simple tabs div end -->
482 <div style="width:97%;" class="">
483 <div class="row justify-content-end form-btns">
484 <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>
485 <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>
486 <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>
487 </div></div>
488 </form>
489 </div>
490 <style>
491 #aio_admin_main {
492 padding:10px;
493 margin: 10px;
494 background-color: #ffffff;
495 border:1px solid #EBDDE2;
496 display: relative;
497 overflow: auto;
498 }
499 .inner_block{
500 height: 370px;
501 display: inline;
502 min-width:770px;
503 }
504 #donate{
505 background-color: #EEFFEE;
506 border: 1px solid #66DD66;
507 border-radius: 10px 10px 10px 10px;
508 height: 58px;
509 padding: 10px;
510 margin: 15px;
511 }
512 .text-font {
513 color: #1ABC9C;
514 font-size: 14px;
515 line-height: 1.5;
516 padding-left: 3px;
517 transition: color 0.25s linear 0s;
518 }
519 .text-font:hover {
520 opacity: 1;
521 transition: color 0.25s linear 0s;
522 }
523 .simpleTabsContent{
524 border: 1px solid #E9E9E9;
525 padding: 4px;
526 }
527 div.simpleTabsContent{
528 margin-top:0;
529 border: 1px solid #E0E0E0;
530 display: none;
531 height: 100%;
532 min-height: 400px;
533 padding: 5px 15px 15px;
534 }
535
536 .size-full {
537 height: auto;
538 max-width: 100%;
539 }
540
541 .wccp-form-button {
542 color: white;
543 padding: 12px 28px;
544 text-align: center;
545 text-decoration: none;
546 display: inline-block;
547 font-size: 16px;
548 cursor: pointer;
549 transition-duration: 0.4s;
550 border: 2px solid;
551 border-radius: 5px;
552 }
553
554 .wccp-form-button:hover {background-color: white;}
555
556 .green-btn {background-color: #4CAF50; border-color: #4CAF50;} /* Green */
557 .green-btn:hover {color: #4CAF50;}
558
559 .blue-btn {background-color: #008CBA; border-color: #008CBA;} /* Blue */
560 .blue-btn:hover {color: #008CBA;}
561
562 .red-btn {background-color: #f44336; border-color: #f44336;} /* Red */
563 .red-btn:hover {color: #f44336;}
564
565 .gray-btn {background-color: #e7e7e7; color: black; border-color: #e7e7e7;} /* Gray */
566 .gray-btn:hover {color: #black;}
567
568 .black-btn {background-color: #555555; border-color: #555555;} /* Black */
569 .black-btn:hover {color: #555555;}
570
571 .form-btns .btn{
572 margin-right: 5px;
573 float: right;
574 }
575 @media (max-width: 435px)
576 {
577 .form-btns .btn
578 {
579 width:95% !important;
580 }
581 .form-btns
582 {
583 -webkit-box-pack: center!important;
584 -ms-flex-pack: center!important;
585 justify-content: center!important;
586 }
587 .form-btns div
588 {
589 width: 100%;
590 }
591
592 }
593 @media (min-width: 436px) and (max-width: 646px)
594 {
595 .form-btns .btn
596 {
597 width:390px !important;
598 }
599 .form-btns
600 {
601 -webkit-box-pack: center!important;
602 -ms-flex-pack: center!important;
603 justify-content: center!important;
604 }
605 }
606 @media (min-width: 647px) and (min-width: 768px)
607 {
608 .form-btns .btn
609 {
610 margin-right: 5px;
611 }
612 }
613 </style>