Changeset 3092002
- Timestamp:
- 05/24/2024 09:45:56 AM (19 months ago)
- Location:
- wp-code-protection
- Files:
-
- 2 added
- 2 edited
-
assets/banner-772x250.png (added)
-
assets/oldd-banner-772x250.jpg (added)
-
trunk/README.txt (modified) (1 diff)
-
trunk/source-code-protection.php (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-code-protection/trunk/README.txt
r3028595 r3092002 4 4 Tags: Security, Threat, Rightclick disable, Disable CTRL A, C, X, U, S, and P, content protection 5 5 Requires at least: 3.8 6 Tested up to: 6. 4.26 Tested up to: 6.5.3 7 7 Stable tag: trunk 8 8 -
wp-code-protection/trunk/source-code-protection.php
r3028595 r3092002 4 4 * Plugin URI: https://viitorcloud.com/blog/ 5 5 * Description: It prevents common techniques in protecting your code from being stolen. 6 * Version: 2.0.06 * Version: 3.0.0 7 7 * Author: Viitorcloud 8 8 * Author URI: https://viitorcloud.com/ … … 11 11 * 12 12 * @package Source Code Protection 13 * @since 1.0.013 * @since 3.0.0 14 14 */ 15 15 … … 26 26 * 27 27 * @package Source Code Protection 28 * @since 1.0.028 * @since 3.0.0 29 29 */ 30 30 register_activation_hook( __FILE__, 'source_code_protection_install' ); … … 36 36 * 37 37 * @package Source Code Protection 38 * @since 1.0.038 * @since 3.0.0 39 39 */ 40 40 register_deactivation_hook( __FILE__, 'source_code_protection_uninstall' ); … … 47 47 * 48 48 * @package Source Code Protection 49 * @since 1.0.049 * @since 3.0.0 50 50 */ 51 51 function source_code_protection_install() { … … 61 61 * 62 62 * @package Source Code Protection 63 * @since 1.0.063 * @since 3.0.0 64 64 */ 65 65 function source_code_protection_uninstall() { … … 74 74 * 75 75 * @package Source Code Protection 76 * @since 1.0.076 * @since 3.0.0 77 77 */ 78 78 add_filter( 'body_class', 'source_code_protection_body_classes', 999 ); … … 96 96 * 97 97 * @package Source Code Protection 98 * @since 1.0.098 * @since 3.0.0 99 99 */ 100 100 function source_code_protection_wp_head() {
Note: See TracChangeset
for help on using the changeset viewer.