Plugin Directory

Changeset 3340359


Ignore:
Timestamp:
08/06/2025 12:24:24 PM (7 months ago)
Author:
linksoftware
Message:

2.10.0

Location:
wp-terms-popup/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-terms-popup/trunk/admin/class-wp-terms-popup-admin.php

    r3208557 r3340359  
    5858    {
    5959        add_submenu_page('edit.php?post_type=termpopup', __('WP Terms Popup Settings', $this->plugin_name), __('Settings', $this->plugin_name), 'manage_options', $this->plugin_name.'-settings', [$this, 'settings']);
    60         add_submenu_page('edit.php?post_type=termpopup', __('WP Terms Popup Designer', $this->plugin_name), __('Designer', $this->plugin_name), 'manage_options', $this->plugin_name.'-designer', [$this, 'designer']);
    61         add_submenu_page('edit.php?post_type=termpopup', __('WP Terms Popup Collector', $this->plugin_name), __('Collector', $this->plugin_name), 'manage_options', $this->plugin_name.'-collector', [$this, 'collector']);
     60        add_submenu_page('edit.php?post_type=termpopup', __('WP Terms Popup Designer', $this->plugin_name), __('Designer', $this->plugin_name), 'edit_pages', $this->plugin_name.'-designer', [$this, 'designer']);
     61        add_submenu_page('edit.php?post_type=termpopup', __('WP Terms Popup Collector', $this->plugin_name), __('Collector', $this->plugin_name), 'edit_pages', $this->plugin_name.'-collector', [$this, 'collector']);
    6262
    6363        do_action('wptp_menu');
  • wp-terms-popup/trunk/index.php

    r3243935 r3340359  
    1010 * Plugin URI:        https://termsplugin.com
    1111 * Description:       Ask users to agree to a popup before they are allowed to view your site.
    12  * Version:           2.9.1
     12 * Version:           2.10.0
    1313 * Author:            Link Software LLC
    1414 * Author URI:        https://linksoftwarellc.com
     
    2727 * Currently plugin version.
    2828 */
    29 define('WP_TERMS_POPUP_VERSION', '2.9.1');
     29define('WP_TERMS_POPUP_VERSION', '2.10.0');
    3030
    3131function activate_wp_terms_popup()
  • wp-terms-popup/trunk/readme.txt

    r3243935 r3340359  
    33Tags: popup, terms and conditions, terms of service, privacy policy, age verification
    44Requires at least: 5.0
    5 Tested up to: 6.7
     5Tested up to: 6.8
    66Requires PHP: 5.6
    7 Stable tag: 2.9.1
     7Stable tag: 2.10.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    114114== Changelog ==
    115115
     116= 2.10.0 =
     117* Changed the user capability required to access the Designer and Collector add-ons.
     118
    116119= 2.9.1 =
    117120* Bug fix to prevent non-sitewide popups from displaying on search result pages.
  • wp-terms-popup/trunk/uninstall.php

    r2362487 r3340359  
    33/**
    44 * Fired when the plugin is uninstalled.
    5  *
    6  * When populating this file, consider the following flow
    7  * of control:
    8  *
    9  * - This method should be static
    10  * - Check if the $_REQUEST content actually is the plugin name
    11  * - Run an admin referrer check to make sure it goes through authentication
    12  * - Verify the output of $_GET makes sense
    13  * - Repeat with other user roles. Best directly by using the links/query string parameters.
    14  * - Repeat things for multisite. Once for a single site in the network, once sitewide.
    15  *
    16  * This file may be updated more in future version of the Boilerplate; however, this is the
    17  * general skeleton and outline for how the file should work.
    18  *
    19  * For more information, see the following discussion:
    20  * https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate/pull/123#issuecomment-28541913
    215 *
    226 * @link       https://linksoftwarellc.com
Note: See TracChangeset for help on using the changeset viewer.