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