Changeset 940108
- Timestamp:
- 06/28/2014 05:58:37 PM (11 years ago)
- Location:
- wordpress-protection
- Files:
-
- 10 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
wordpress-protection/trunk/readme.txt
r898029 r940108 6 6 Tags: wordpress, protection, Post, posts, copy, protect, click, right, disable, image, page, google, SEO, plugin, content, security, block, javascript 7 7 Requires at least: Wordpress 2+ 8 Tested up to: 3.9 9 Stable tag: 7. 08 Tested up to: 3.9.1 9 Stable tag: 7.2 10 10 11 11 == Description == … … 18 18 * **Fully Optimized** 19 19 * **No Compromise with SEO**. Search engines (like Google, Bing, Yahoo) will still be able grab to your content. 20 * **Disables Image Drag and Drop (Available In Professional Version Only)**20 * **Disables Image Drag and Drop and Image Protection on All Devices - PC, Mac, Tablets and Mobile Phones (Available In Professional Version Only)** 21 21 * **And a number of Features (Available In Professional Version Only)** 22 22 … … 48 48 49 49 == Changelog == 50 * ver : 7.2 : JS Conflicts Resolved as few Wordpress Customers reported which they experienced on newer WordPress versions 50 51 * ver : 7.0 : Bugs fixed. 51 52 * ver : 6.0 : Added compatibility with latest browser versions. Removed the conflicting option. -
wordpress-protection/trunk/settings.php
r810306 r940108 15 15 define('WPL_ADMIN_URL', get_admin_url()."options-general.php?page=".basename(dirname(__FILE__) . '.php')); 16 16 define('WPL_BASIC_ASSETS', WPL_BASIC_BASE . '/assets'); 17 define('WPL_BASIC_DB_VERSION', '7. 0');17 define('WPL_BASIC_DB_VERSION', '7.2'); 18 18 define('WPL_BASIC_SUPPORT_EMAIL', 'support@' . strtolower(WPL_BASIC_WEB_HOME_PAGE_NAME)); 19 19 define('WPL_BASIC_FACEBOOK_LINK', "http://www.facebook.com/" . WPL_BASIC_WEB_HOME_PAGE_NAME_SHORT); -
wordpress-protection/trunk/wordpress-protection.php
r810307 r940108 4 4 Plugin URI: http://www.edarpan.com/pages/wordpress-protection 5 5 Description: <strong>WordPress Protection Plugin</strong> provides complete security for your wordpress website, so that the plagiarists could not copy the content and steal data or images from your wordpress site Pages. By using the WordPress Protection Plugin (Basic), you can disable the text-selection, shortcuts like CTRL+C, CTRL+A, CTRL+X, CTRL+V and block the use of right click on your website. However, to apply full security to your wordpress website, you can purchase the <a href="http://www.edarpan.com/pages/wordpress-protection">Professional WordPress Protection</a> Plugin. 6 Version: 7. 06 Version: 7.2 7 7 Author: eDarpan.com 8 8 Author URI: http://www.edarpan.com/ … … 10 10 ************************************************************************* 11 11 12 Copyright (C) 201 3eDarpan.com12 Copyright (C) 2014 eDarpan.com 13 13 14 14 This program is free software: you can redistribute it and/or modify … … 101 101 ?> 102 102 <script type="text/javascript"> 103 (function($){ 104 $(document).ready(function() 105 { 106 $(document).bind("cut copy paste",function(e) { 107 e.preventDefault(); 108 }); 103 jQuery(document).ready(function() 104 { 105 jQuery(document).bind("cut copy paste",function(e) { 106 e.preventDefault(); 109 107 }); 110 }) (jQuery);108 }); 111 109 </script> 112 110 <?php … … 121 119 <script type='text/javascript' security="edarpan"> 122 120 var message = "<?php echo (isset($text) ? $text : ''); ?>"; 123 (function($){ 124 $(document).ready(function(){ 125 $(document).bind("contextmenu",function(e){ 126 <?php echo ( (isset($text) && !empty($text)) ? 'alert(message);' : '' ); ?> 127 return false; 128 }); 121 jQuery(document).ready(function(){ 122 jQuery(document).bind("contextmenu",function(e){ 123 <?php echo ( (isset($text) && !empty($text)) ? 'alert(message);' : '' ); ?> 124 return false; 129 125 }); 130 }) (jQuery);126 }); 131 127 </script> 132 128 <?php … … 334 330 <script type="text/javascript"> 335 331 var ed_bl_index; 336 (function($){ 337 $(document).ready(function(e){ 338 disableSelection(document.body); 339 }); 340 })(jQuery); 332 jQuery(document).ready(function(e){ 333 disableSelection(document.body); 334 }); 341 335 </script> 342 336 <!-- Wordpress Protection Plugin by eDarpan.com - http://www.edarpan.com/pages/wordpress-protection -->
Note: See TracChangeset
for help on using the changeset viewer.