Plugin Directory

Changeset 3302557


Ignore:
Timestamp:
05/28/2025 11:15:44 PM (9 months ago)
Author:
rizonepress
Message:

Added Settings link to plugins list page for easier access to configuration.

Location:
mail-cloak
Files:
16 added
2 edited

Legend:

Unmodified
Added
Removed
  • mail-cloak/trunk/mail-cloak.php

    r3302554 r3302557  
    44 * Plugin URI: https://rizonepress.com/plugins/mail-cloak
    55 * Description: Protects email addresses from spam bots and scrapers while keeping them visible to real users.
    6  * Version: 1.3.1
     6 * Version: 1.3.2
    77 * Author: rizonepress
    88 * Author URI: https://rizonepress.com
     
    156156        add_action('admin_enqueue_scripts', array($this, 'admin_enqueue_scripts'));
    157157        add_action('admin_footer', array($this, 'admin_footer'));
     158
     159        // Add settings link to plugins page
     160        add_filter('plugin_action_links_' . plugin_basename(__FILE__), array($this, 'add_plugin_action_links'));
    158161
    159162        // Initialize honeypot trigger counter
     
    11021105        return $params;
    11031106    }
     1107
     1108    /**
     1109     * Add settings link to plugins page
     1110     */
     1111    public function add_plugin_action_links($links) {
     1112        $settings_link = '<a href="' . esc_url(admin_url('admin.php?page=mail-cloak-settings')) . '">' . __('Settings') . '</a>';
     1113        array_unshift($links, $settings_link);
     1114        return $links;
     1115    }
    11041116}
    11051117
  • mail-cloak/trunk/readme.txt

    r3302556 r3302557  
    44Requires at least: 5.0
    55Tested up to: 6.8
    6 Stable tag: 1.3.1
     6Stable tag: 1.3.2
    77Requires PHP: 7.2
    88License: GPLv2 or later
     
    113113== Changelog ==
    114114
     115= 1.3.2 =
     116* Added Settings link to plugins list page for easier access to configuration
     117
    115118= 1.3.1 =
    116119* Added comprehensive bot whitelist system with 30+ pre-configured legitimate services
     
    146149== Upgrade Notice ==
    147150
     151= 1.3.2 =
     152Enhanced user experience! New Settings link added to plugins list page for quick access to Mail Cloak configuration. Recommended update for improved usability.
     153
    148154= 1.3.1 =
    149155Major security update! New bot detection system with automated IP blocking, comprehensive whitelist for legitimate crawlers, and professional analytics dashboard. Enhanced page builder compatibility and performance optimizations. Highly recommended upgrade for all users.
Note: See TracChangeset for help on using the changeset viewer.