| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/icd/mscinformatics2022/wp-content/themes/flash/inc/admin/ |
Upload File : |
<?php
/**
* Flash Admin Class.
*
* @author ThemeGrill
* @package flash
* @since 1.3.8
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'Flash_Admin' ) ) :
/**
* Flash_Admin Class.
*/
class Flash_Admin {
/**
* Constructor.
*/
public function __construct() {
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
}
/**
* Localize array for import button AJAX request.
*/
public function enqueue_scripts() {
wp_enqueue_style( 'flash-admin-style', get_template_directory_uri() . '/inc/admin/css/admin.css', array(), FLASH_THEME_VERSION );
wp_enqueue_script( 'flash-plugin-install-helper', get_template_directory_uri() . '/inc/admin/js/plugin-handle.js', array( 'jquery' ), FLASH_THEME_VERSION, true );
$welcome_data = array(
'uri' => esc_url( admin_url( '/themes.php?page=demo-importer&browse=all&flash-hide-notice=welcome' ) ),
'btn_text' => esc_html__( 'Processing...', 'flash' ),
);
// Only add nonce and ajaxurl if user has appropriate capabilities
if ( current_user_can( 'manage_options' ) ) {
$welcome_data['nonce'] = wp_create_nonce( 'flash_demo_import_nonce' );
$welcome_data['ajaxurl'] = admin_url( 'admin-ajax.php' );
}
wp_localize_script( 'flash-plugin-install-helper', 'flashRedirectDemoPage', $welcome_data );
}
}
endif;
return new Flash_Admin();