????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.37 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.se/wp-content/themes/x/framework/functions/global/admin/addons/ |
Upload File : |
<?php
// =============================================================================
// FUNCTIONS/GLOBAL/ADMIN/ADDONS/SETUP.PHP
// -----------------------------------------------------------------------------
// Initializes and sets up the X Addons section.
// =============================================================================
// =============================================================================
// TABLE OF CONTENTS
// -----------------------------------------------------------------------------
// 01. Set Path
// 02. Links
// 03. Helpers
// 04. Require Files
// 05. Setup Menu
// 06. Activation Redirect
// 07. Instantiate Addons
// 08. Validation Notice
// =============================================================================
// Set Path
// =============================================================================
$addn_path = X_TEMPLATE_PATH . '/framework/functions/global/admin/addons';
// Links
// =============================================================================
function x_addons_get_link_home() {
return admin_url( 'admin.php?page=x-addons-home' );
}
// Helpers
// =============================================================================
function x_addons_preview_unlock( $box_class, $text = 'Setup Now' ) {
?>
<a class="tco-btn tco-btn-nope" href="#" data-tco-toggle="<?php echo $box_class; ?> .tco-overlay"><?php _e( $text, '__x__' ); ?></a>
<?php
}
function x_addons_preview_overlay( $box_class ) {
?>
<div class="tco-overlay tco-overlay-box-content">
<a class="tco-overlay-close" href="#" data-tco-toggle="<?php echo $box_class; ?> .tco-overlay"><?php x_tco()->admin_icon( 'no' ); ?></a>
<h4 class="tco-box-content-title"><?php _e( 'How do I unlock this feature?', '__x__' ); ?></h4>
<p><?php _e( 'If you have purchased X from ThemeForest already, you can find your purchase code <a href="https://community.theme.co/images/find-item-purchase-code.png" target="_blank">here</a>. If you do not have a license or need to get another, you can <a href="https://theme.co/go/join-validation.php" target="_blank">purchase</a> one.', '__x__' ); ?></p>
<h4 class="tco-box-content-title"><?php _e( 'Where do I enter my purchase code?', '__x__' ); ?></h4>
<p><?php printf( __( 'Once you have a purchase code you can <a %s href="#">enter</a> it in the input at the top of this page.', '__x__' ), 'data-tco-focus="validation-input"' ); ?></p>
</div>
<?php
}
// Require Files
// =============================================================================
//
// 1. Updates API.
// 2. Demo content API.
// 3. Addons home modules.
// 4. Home page.
//
require_once( $addn_path . '/updates/class-theme-updater.php' );
require_once( $addn_path . '/updates/class-plugin-updater.php' );
require_once( $addn_path . '/demo/legacy/ajax-handler.php' );
require_once( $addn_path . '/demo/class-x-demo-import-session.php' );
require_once( $addn_path . '/demo/class-x-demo-import-registry.php' );
require_once( $addn_path . '/demo/class-x-demo-import-processor.php' );
require_once( $addn_path . '/modules/class-addons-home.php' );
require_once( $addn_path . '/modules/class-addons-updates.php' );
require_once( $addn_path . '/modules/class-addons-validation.php' );
require_once( $addn_path . '/modules/class-addons-demo-content.php' );
require_once( $addn_path . '/modules/class-addons-customizer-manager.php' );
require_once( $addn_path . '/modules/class-addons-extensions.php' );
require_once( $addn_path . '/page-home.php' );
// Setup Menu
// =============================================================================
function x_addons_add_menu() {
add_menu_page( 'X – Addons: Home', 'Addons', 'manage_options', 'x-addons-home', 'x_addons_page_home', NULL, 3 );
add_submenu_page( 'x-addons-home', 'X – Addons: Home', 'Home', 'manage_options', 'x-addons-home', 'x_addons_page_home' );
}
add_action( 'admin_menu', 'x_addons_add_menu' );
// Activation Redirect
// =============================================================================
function x_addons_theme_activation_redirect() {
if ( isset( $_GET['activated'] ) ) {
wp_redirect( x_addons_get_link_home() );
}
}
add_action( 'admin_init', 'x_addons_theme_activation_redirect' );
// Instantiate Addons
// =============================================================================
if ( is_admin() ) {
X_Addons_Home::instance();
X_Addons_Customizer_Manager::instance();
X_Addons_Updates::instance();
X_Addons_Demo_Content::instance();
X_Addons_Extensions::instance();
X_Addons_Validation::instance();
}
// Validation Notice
// =============================================================================
function x_addons_validation_notice() {
if ( false === get_option( 'x_dismiss_validation_notice', false ) && ! x_is_validated() && ! in_array( get_current_screen()->parent_base, apply_filters( 'x_validation_notice_blocked_screens', array( 'x-addons-home' ) ) ) ) {
x_tco()->admin_notice( array(
'message' => sprintf( __( 'This X license is <strong>not validated</strong>. <a href="%s">Fix</a>', '__x__' ), x_addons_get_link_home() ),
'dismissible' => true,
'ajax_dismiss' => 'x_dismiss_validation_notice'
) );
}
}
add_action( 'admin_notices', 'x_addons_validation_notice' );