Changeset 3340359
- Timestamp:
- 08/06/2025 12:24:24 PM (7 months ago)
- Location:
- wp-terms-popup/trunk
- Files:
-
- 4 edited
-
admin/class-wp-terms-popup-admin.php (modified) (1 diff)
-
index.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-terms-popup/trunk/admin/class-wp-terms-popup-admin.php
r3208557 r3340359 58 58 { 59 59 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']); 62 62 63 63 do_action('wptp_menu'); -
wp-terms-popup/trunk/index.php
r3243935 r3340359 10 10 * Plugin URI: https://termsplugin.com 11 11 * Description: Ask users to agree to a popup before they are allowed to view your site. 12 * Version: 2. 9.112 * Version: 2.10.0 13 13 * Author: Link Software LLC 14 14 * Author URI: https://linksoftwarellc.com … … 27 27 * Currently plugin version. 28 28 */ 29 define('WP_TERMS_POPUP_VERSION', '2. 9.1');29 define('WP_TERMS_POPUP_VERSION', '2.10.0'); 30 30 31 31 function activate_wp_terms_popup() -
wp-terms-popup/trunk/readme.txt
r3243935 r3340359 3 3 Tags: popup, terms and conditions, terms of service, privacy policy, age verification 4 4 Requires at least: 5.0 5 Tested up to: 6. 75 Tested up to: 6.8 6 6 Requires PHP: 5.6 7 Stable tag: 2. 9.17 Stable tag: 2.10.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 114 114 == Changelog == 115 115 116 = 2.10.0 = 117 * Changed the user capability required to access the Designer and Collector add-ons. 118 116 119 = 2.9.1 = 117 120 * Bug fix to prevent non-sitewide popups from displaying on search result pages. -
wp-terms-popup/trunk/uninstall.php
r2362487 r3340359 3 3 /** 4 4 * Fired when the plugin is uninstalled. 5 *6 * When populating this file, consider the following flow7 * of control:8 *9 * - This method should be static10 * - Check if the $_REQUEST content actually is the plugin name11 * - Run an admin referrer check to make sure it goes through authentication12 * - Verify the output of $_GET makes sense13 * - 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 the17 * 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-2854191321 5 * 22 6 * @link https://linksoftwarellc.com
Note: See TracChangeset
for help on using the changeset viewer.