Plugin Directory

Changeset 3130824


Ignore:
Timestamp:
08/05/2024 06:29:54 AM (20 months ago)
Author:
nikmelnik
Message:

version 1.1.2. add require_once(ABSPATH . 'wp-admin/includes/file.php') for WP_Filesystem()

Location:
realbig-media/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • realbig-media/trunk/README.txt

    r3103368 r3130824  
    107107
    108108== Changelog ==
     109= 1.1.2 =
     110
     111Изменения версии:
     112* улучшили синхронизацию.
     113* другие мелкие улучшения и правки.
    109114
    110115= 1.1.1 =
  • realbig-media/trunk/RFWP_AdminPage.php

    r3103368 r3130824  
    1111
    1212            try {
     13                require_once(ABSPATH . 'wp-admin/includes/file.php');
    1314                WP_Filesystem();
    1415                $filePath = plugin_dir_path( __FILE__ ).'assets/images/realbig_plugin_standart.svg';
  • realbig-media/trunk/realbigForWP.php

    r3103368 r3130824  
    66Plugin name:  Realbig Media
    77Description:  Плагин для монетизации от RealBig.media
    8 Version:      1.1.1
     8Version:      1.1.2
    99Author:       Realbig Team
    1010Author URI:   https://realbig.media
     
    4040
    4141    if (!isset($GLOBALS['dev_mode'])) {
    42         $devMode = false;
     42        $devMode = false;
    4343        $GLOBALS['dev_mode'] = $devMode;
    4444    }
     
    5252        $GLOBALS['rb_localRotator'] = true;
    5353    }
    54 
    5554    include_once (plugin_dir_path(__FILE__).'rssGenerator.php');
    5655
     
    124123        add_action('init', 'RFWP_rssInit');
    125124    }
     125
    126126    /** End of Rss init */
    127127    /** Check in header inserting */
     
    703703    }
    704704    /***************** updater code ***************************************************************************************/
     705
    705706    /****************** end of updater code *******************************************************************************/
    706707    /********** checking and creating tables ******************************************************************************/
  • realbig-media/trunk/synchronising.php

    r3103368 r3130824  
    10491049    if (!function_exists('RFWP_createAndFillLocalRotator')) {
    10501050        function RFWP_createAndFillLocalRotator($rotatorFileInfo) {
     1051            require_once(ABSPATH . 'wp-admin/includes/file.php');
    10511052            WP_Filesystem();
    10521053            global $wp_filesystem;
  • realbig-media/trunk/templates/adminPage/logs.php

    r3062761 r3130824  
    44$files = list_files(rtrim($folder, '/'));
    55global $wp_filesystem;
     6require_once(ABSPATH . 'wp-admin/includes/file.php');
    67WP_Filesystem();
    78?>
Note: See TracChangeset for help on using the changeset viewer.