Changeset 3391021
- Timestamp:
- 11/06/2025 10:44:07 AM (5 months ago)
- Location:
- tnc-toolbox
- Files:
-
- 17 added
- 3 edited
-
tags/2.0.3 (added)
-
tags/2.0.3/assets (added)
-
tags/2.0.3/assets/index.php (added)
-
tags/2.0.3/assets/styles-config.css (added)
-
tags/2.0.3/assets/tnc-icon-light.png (added)
-
tags/2.0.3/core (added)
-
tags/2.0.3/core/core.php (added)
-
tags/2.0.3/core/index.php (added)
-
tags/2.0.3/core/settings.php (added)
-
tags/2.0.3/index.php (added)
-
tags/2.0.3/languages (added)
-
tags/2.0.3/languages/index.php (added)
-
tags/2.0.3/license.txt (added)
-
tags/2.0.3/readme.txt (added)
-
tags/2.0.3/tnc-toolbox.php (added)
-
tags/2.0.3/vendors (added)
-
tags/2.0.3/vendors/cpanel-uapi.php (added)
-
trunk/core/core.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/tnc-toolbox.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tnc-toolbox/trunk/core/core.php
r3390889 r3391021 54 54 add_filter('plugin_action_links_' . TNCTOOLBOX_PLUGIN_BASE, array($this, 'add_plugin_action_link'), 20); 55 55 56 // Admin bar customi zation56 // Admin bar customisation 57 57 add_action('admin_enqueue_scripts', array($this, 'enqueue_custom_css')); 58 58 add_action('admin_bar_menu', array($this, 'add_parent_menu_entry'), 99); … … 64 64 add_action('_core_updated_successfully', array($this, 'nginx_cache_purge')); 65 65 66 // Notices 66 // Notices (Admin GUI) 67 67 add_action('admin_notices', array($this, 'display_admin_notices')); 68 69 // ACF Save (#24) 70 if (has_action('acf/options_page/save') === true) { 71 add_action('acf/options_page/save', TNC_cPanel_UAPI::make_api_request('NginxCaching/clear_cache'), 10, 3); 72 } 68 73 } 69 74 … … 253 258 if ('publish' === $post_after->post_status || 254 259 ($post_before->post_status === 'publish' && $post_after->post_status !== 'trash')) { 255 // Use the UAPI directly rather than function, to support automated 260 // Use the UAPI directly rather than function, to support automated (#31) 256 261 TNC_cPanel_UAPI::make_api_request('NginxCaching/clear_cache'); 257 262 } -
tnc-toolbox/trunk/readme.txt
r3390889 r3391021 8 8 Tested up to: 6.8 9 9 Requires PHP: 8.0 10 Stable tag: 2.0. 210 Stable tag: 2.0.3 11 11 License: GPLv3 12 12 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 95 95 == Changelog == 96 96 97 = 2.0.3: Nov 6, 2025 = 98 * Auto-purge (ACF): When you save ACF config, purge! (#24) 99 97 100 = 2.0.2: Nov 6, 2025 = 98 101 * Fix: Settings save no longer errors (relocated func.) (#32) … … 126 129 * Truncate max-length of relayed API error to GUI (#22) 127 130 * Auto-purge when WP Core is successfully upgraded (#23) 128 129 = 1.3.9: Dec 31, 2024 =130 * Pass-through error from cP API back to WP GUI (#22)131 * Improve uncaught error wording, and clarify on user type132 133 = 1.3.8: Dec 18, 2024 =134 * Update compatibility to WP 6.7.x sub-major (#20)135 * Slight refinement to wording of not-configured prompt (#21)136 137 = 1.3.7: May 9, 2024 =138 * Declare class firstly, resolve warnings (#18)139 * Slight improvements to GUI/Menu wording140 141 = 1.3.6: May 2, 2024 =142 * Pluggable: Remove dependency, ie. support multi-site (#17)143 * Re-factor: Merge API calls into single function (#16)144 * GPLv3: Consistent, no longer partial v2 & v3 -
tnc-toolbox/trunk/tnc-toolbox.php
r3390889 r3391021 6 6 * @author The Network Crew Pty Ltd (TNC & Co.) 7 7 * @license gplv3 8 * @version 2.0. 28 * @version 2.0.3 9 9 * 10 10 * @wordpress-plugin … … 12 12 * Plugin URI: https://merlot.digital 13 13 * Description: Adds functionality to WP - designed for NGINX-powered Servers on cPanel+WHM. Made to help you fly online! 14 * Version: 2.0. 214 * Version: 2.0.3 15 15 * Requires at least: 6.0 16 16 * Requires PHP: 8.0 … … 32 32 33 33 // Plugin version 34 define('TNCTOOLBOX_VERSION', '2.0. 2');34 define('TNCTOOLBOX_VERSION', '2.0.3'); 35 35 36 36 // Plugin Root File
Note: See TracChangeset
for help on using the changeset viewer.