Plugin Directory

Changeset 3144557


Ignore:
Timestamp:
08/31/2024 06:10:34 AM (19 months ago)
Author:
wpvncom
Message:

8.4.7

Location:
wp-extra/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • wp-extra/trunk/readme.txt

    r3143782 r3144557  
    55Requires at least: 6.2
    66Tested up to: 6.6.1
    7 Stable tag: 8.4.6
     7Stable tag: 8.4.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5252== Changelog ==
    5353
    54 = 8.4.5 =
     54= 8.4.7 =
     55* [FIX] Settings UI
     56
     57= 8.4.6 =
    5558* [FIX] Settings UI
    5659* [FIX] Modules
  • wp-extra/trunk/src/Settings.php

    r3143782 r3144557  
    1111use WPEXtra\WPSettings\Module;
    1212
    13 class Settings
    14 {
    15     public function __construct()
    16     {
     13class Settings {
     14    public function __construct() {
    1715        add_filter('wp_settings_option_type_map', function($options){
    1816            $options['admins'] = Admins::class;
     
    2624    }
    2725
    28     public function register()
    29     {
     26    public function register() {
    3027        $settings = new WPSettings(__('WP EXtra'));
    3128        $settings->set_capability('manage_options');
  • wp-extra/trunk/src/WPEXtra.php

    r3131038 r3144557  
    1717    public function __construct() {
    1818        $this->boot();
    19         add_action('activated_plugin', [$this, 'activate_plugin_redirect']);
    2019        add_action('plugins_loaded', [$this, 'load_textdomain']);
    2120        add_filter('plugin_action_links_' . plugin_basename(WPEX_FILE), [$this, 'add_plugin_action_links']);
    2221        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         }
    3022    }
    3123
  • wp-extra/trunk/vendor/wordpressvn/wp-settings/resources/views/options/license.php

    r3137727 r3144557  
    5858    <td><?php echo esc_html($expiration_date); ?></td>
    5959</tr>
    60 <tr valign="top">
    61     <td colspan="2"></td>
    62 </tr>
  • wp-extra/trunk/wp-extra.php

    r3143782 r3144557  
    44 * Plugin URI:          https://wordpress.org/plugins/wp-extra/
    55 * Description:         ❤ This is a simple and perfect tool to use as your website’s functionality plugin. Awesome !!!
    6  * Version:             8.4.6
     6 * Version:             8.4.7
    77 * Requires at least:   6.2
    88 * Requires PHP:        7.4
     
    1616defined('ABSPATH') || die;
    1717if ( ! defined( 'WPEX_VERSION' ) ) {
    18     define('WPEX_VERSION', '8.4.6');
     18    define('WPEX_VERSION', '8.4.7');
    1919}
    2020if ( ! defined( 'WPEX_BASE' ) ) {
Note: See TracChangeset for help on using the changeset viewer.