Plugin Directory

Changeset 3083571

Timestamp:
05/08/2024 09:22:11 PM (3 months ago)
Author:
wpessential
Message:

2.0
We fix the error in library

Location:
wpessential-icons
Files:
64 added
3 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • wpessential-icons/trunk/inc/Builders/Elementor/Utility/Elementor.php

    r2410043 r3083571  
    6060                'labelIcon' => 'eicon-elementor-square',
    6161                'ver'       => '1.0',
    62                 'fetchJson' => apply_filters( 'WPE_ic_http_url', 'assets/css/json/elementor.icons.min.json' ),
     62                'fetchJson' => ,
    6363                'native'    => true,
    6464            ],
  • wpessential-icons/trunk/inc/Loader.php

    r2410043 r3083571  
    33namespace WPEssential\Plugins\Icons;
    44
     5
    56use WPEssential\Plugins\Icons\Utility\BuildersInit;
    6 use WPEssential\Plugins\Icons\Utility\Enqueue;
    7 use WPEssential\Plugins\Icons\Utility\RegisterAssets;
    87
    98final class Loader
     
    3534    public static function load_files ()
    3635    {
    37         require_once WPE_P_ICONS_DIR . 'inc/functions.php';
    3836        require_once WPE_P_ICONS_DIR . 'inc/Libraries/ClassLoader.php';
    3937    }
     
    4139    public static function start ()
    4240    {
    43         RegisterAssets::constructor();
    44         Enqueue::constructor();
     41        AssetsInit::constructor();
    4542    }
    4643
  • wpessential-icons/trunk/readme.txt

    r2458294 r3083571  
    66Requires at least: 5.5.0
    77Tested up to: 5.5
    8 Stable tag: 1.0.0.00002
     8Stable tag:
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    5353
    5454== Upgrade Notice ==
    55 
    56 
    57 
  • wpessential-icons/trunk/wpessential-icons.php

    r2458116 r3083571  
    77 * Plugin URI: https://wpessential.org/home
    88 * Author: WPEssential
    9  * Version: 1.0.0.00002
     9 * Version:
    1010 * Author URI: https://wpessential.org/
    1111 * Text Domain: wpessential-icons
    1212 * Requires PHP: 7.4
    1313 * Requires at least: 5.5.0
    14  * Tested up to: 5.5
    1514 * License: GPLv2
    1615 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    2120require_once WPE_P_ICONS_DIR . 'inc/Loader.php';
    2221
    23 add_action( 'plugins_loaded', function ()
    24 {
     22add_action( 'plugins_loaded', function () {
    2523    if ( ! did_action( 'wpessential_loaded' ) ) {
    2624        require_once WPE_P_ICONS_DIR . 'inc/Libraries/RequiredNotifire.php';
    27         \WPEssential\Plugins\Icons\Libraries\RequiredNotifire::make( __( 'Thanks for', 'wpessential-blog-post' ) )
    28                                                             ->plugin_check( 'wpessential' )
    29                                                              ->desc( __( 'Choosing the Wpessential product. The installed plugin has required the WPEssential base plugin.', 'wpessential-blog-post' ) )
    30                                                             ->dismiss( true )
    31                                                             ->icon( WPE_P_ICONS_URL . 'assets/images/wpessential-logo.jpg' );
     25        \WPEssential\Plugins\Icons\Libraries\RequiredNotifire::make( __( 'Thanks for', 'wpessential-' ) )
     26        ->plugin_check( 'wpessential' )
     27        ' ) )
     28        ->dismiss( true )
     29        ->icon( WPE_P_ICONS_URL . 'assets/images/wpessential-logo.jpg' );
    3230
    3331    }
     
    4543
    4644add_action( 'wpessential_loaded', 'wpe_icons_plugin_loaded_action' );
    47 
Note: See TracChangeset for help on using the changeset viewer.