Changeset 3144557
- Timestamp:
- 08/31/2024 06:10:34 AM (19 months ago)
- Location:
- wp-extra/trunk
- Files:
-
- 5 edited
-
readme.txt (modified) (2 diffs)
-
src/Settings.php (modified) (2 diffs)
-
src/WPEXtra.php (modified) (1 diff)
-
vendor/wordpressvn/wp-settings/resources/views/options/license.php (modified) (1 diff)
-
wp-extra.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-extra/trunk/readme.txt
r3143782 r3144557 5 5 Requires at least: 6.2 6 6 Tested up to: 6.6.1 7 Stable tag: 8.4. 67 Stable tag: 8.4.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 52 52 == Changelog == 53 53 54 = 8.4.5 = 54 = 8.4.7 = 55 * [FIX] Settings UI 56 57 = 8.4.6 = 55 58 * [FIX] Settings UI 56 59 * [FIX] Modules -
wp-extra/trunk/src/Settings.php
r3143782 r3144557 11 11 use WPEXtra\WPSettings\Module; 12 12 13 class Settings 14 { 15 public function __construct() 16 { 13 class Settings { 14 public function __construct() { 17 15 add_filter('wp_settings_option_type_map', function($options){ 18 16 $options['admins'] = Admins::class; … … 26 24 } 27 25 28 public function register() 29 { 26 public function register() { 30 27 $settings = new WPSettings(__('WP EXtra')); 31 28 $settings->set_capability('manage_options'); -
wp-extra/trunk/src/WPEXtra.php
r3131038 r3144557 17 17 public function __construct() { 18 18 $this->boot(); 19 add_action('activated_plugin', [$this, 'activate_plugin_redirect']);20 19 add_action('plugins_loaded', [$this, 'load_textdomain']); 21 20 add_filter('plugin_action_links_' . plugin_basename(WPEX_FILE), [$this, 'add_plugin_action_links']); 22 21 add_filter('plugin_row_meta', [$this, 'add_plugin_meta_links'], 10, 2 ); 23 }24 25 public function activate_plugin_redirect( $plugin_file ) {26 if( !wp_doing_ajax() && $plugin_file == plugin_basename( WPEX_FILE ) ) {27 wp_safe_redirect( admin_url( 'admin.php?page=wp-extra' ) );28 exit();29 }30 22 } 31 23 -
wp-extra/trunk/vendor/wordpressvn/wp-settings/resources/views/options/license.php
r3137727 r3144557 58 58 <td><?php echo esc_html($expiration_date); ?></td> 59 59 </tr> 60 <tr valign="top">61 <td colspan="2"></td>62 </tr> -
wp-extra/trunk/wp-extra.php
r3143782 r3144557 4 4 * Plugin URI: https://wordpress.org/plugins/wp-extra/ 5 5 * Description: ❤ This is a simple and perfect tool to use as your website’s functionality plugin. Awesome !!! 6 * Version: 8.4. 66 * Version: 8.4.7 7 7 * Requires at least: 6.2 8 8 * Requires PHP: 7.4 … … 16 16 defined('ABSPATH') || die; 17 17 if ( ! defined( 'WPEX_VERSION' ) ) { 18 define('WPEX_VERSION', '8.4. 6');18 define('WPEX_VERSION', '8.4.7'); 19 19 } 20 20 if ( ! defined( 'WPEX_BASE' ) ) {
Note: See TracChangeset
for help on using the changeset viewer.