Plugin Directory

Changeset 3092002


Ignore:
Timestamp:
05/24/2024 09:45:56 AM (19 months ago)
Author:
viitorcloudvc
Message:

Update banner and icon also tested with latest WordPress version

Location:
wp-code-protection
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • wp-code-protection/trunk/README.txt

    r3028595 r3092002  
    44Tags: Security, Threat, Rightclick disable, Disable CTRL A, C, X, U, S, and P, content protection
    55Requires at least: 3.8
    6 Tested up to: 6.4.2
     6Tested up to: 6.5.3
    77Stable tag: trunk
    88
  • wp-code-protection/trunk/source-code-protection.php

    r3028595 r3092002  
    44 * Plugin URI: https://viitorcloud.com/blog/
    55 * Description: It prevents common techniques in protecting your code from being stolen.
    6  * Version: 2.0.0
     6 * Version: 3.0.0
    77 * Author: Viitorcloud
    88 * Author URI: https://viitorcloud.com/
     
    1111 *
    1212 * @package Source Code Protection
    13  * @since 1.0.0
     13 * @since 3.0.0
    1414 */
    1515
     
    2626 *
    2727 * @package Source Code Protection
    28  * @since 1.0.0
     28 * @since 3.0.0
    2929 */
    3030register_activation_hook( __FILE__, 'source_code_protection_install' );
     
    3636 *
    3737 * @package Source Code Protection
    38  * @since 1.0.0
     38 * @since 3.0.0
    3939 */
    4040register_deactivation_hook( __FILE__, 'source_code_protection_uninstall' );
     
    4747 *
    4848 * @package Source Code Protection
    49  * @since 1.0.0
     49 * @since 3.0.0
    5050 */
    5151function source_code_protection_install() {
     
    6161 *
    6262 * @package Source Code Protection
    63  * @since 1.0.0
     63 * @since 3.0.0
    6464 */
    6565function source_code_protection_uninstall() {
     
    7474 *
    7575 * @package Source Code Protection
    76  * @since 1.0.0
     76 * @since 3.0.0
    7777 */
    7878add_filter( 'body_class', 'source_code_protection_body_classes', 999 );
     
    9696 *
    9797 * @package Source Code Protection
    98  * @since 1.0.0
     98 * @since 3.0.0
    9999 */
    100100function source_code_protection_wp_head() {
Note: See TracChangeset for help on using the changeset viewer.