File: /storage/v6964/srce/public_html/wp-content/themes/construction-light/inc/welcome/welcome.php
<?php
if (!class_exists('ConstructionLIght_Welcome')) :
class ConstructionLIght_Welcome {
public $tab_sections = array();
public $theme_name = ''; // For storing Theme Name
public $theme_version = ''; // For Storing Theme Current Version Information
public $free_plugins = array(); // For Storing the list of the Recommended Free Plugins
/**
* Constructor for the Welcome Screen
*/
public function __construct() {
/** Useful Variables */
$theme = wp_get_theme();
$this->theme_name = $theme->Name;
$this->theme_version = $theme->Version;
/** Define Tabs Sections */
$this->tab_sections = array(
'getting_started' => esc_html__('Getting Started', 'construction-light'),
'recommended_plugins' => esc_html__('Recommended Plugins', 'construction-light'),
'support' => esc_html__('Support', 'construction-light'),
'free_vs_pro' => esc_html__('Free Vs Pro', 'construction-light')
);
/** List of Recommended Free Plugins */
/** List of Recommended Free Plugins **/
$this->free_plugins = array(
'sparkle-demo-importer' => array(
'name' => 'Sparkle Demo Importer',
'slug' => 'sparkle-demo-importer',
'filename' => 'sparkle-demo-importer',
'thumb_path' => 'https://ps.w.org/sparkle-demo-importer/assets/icon-256x256.png?rev=2429976'
),
'patterns-kit' => array(
'name' => 'Patterns Kit',
'slug' => 'patterns-kit',
'filename' => 'plugins',
'thumb_path' => 'https://ps.w.org/patterns-kit/assets/icon-256x256.png?rev=2429976'
),
'elementor' => array(
'name' => 'Elementor Website Builder',
'slug' => 'elementor',
'filename' => 'elementor',
'thumb_path' => 'https://ps.w.org/elementor/assets/icon-256x256.png'
),
'contact-form-7' => array(
'name' => 'Contact Form 7',
'slug' => 'contact-form-7',
'filename' => 'contact-form-7',
'thumb_path' => 'https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255'
),
'woocommerce' => array(
'name' => 'WooCommerce',
'slug' => 'woocommerce',
'filename' => 'woocommerce',
'thumb_path' => 'https://ps.w.org/woocommerce/assets/icon-256x256.png'
),
'siteorigin-panels' => array(
'name' => 'SiteOrigin',
'slug' => 'siteorigin-panels',
'filename' => 'siteorigin-panels',
'thumb_path' => 'https://ps.w.org/siteorigin-panels/assets/icon-256x256.png'
),
'olympus-google-fonts' => array(
'name' => 'Google Fonts',
'slug' => 'olympus-google-fonts',
'filename' => 'olympus-google-fonts',
'thumb_path' => 'https://ps.w.org/olympus-google-fonts/assets/icon-256x256.jpg?rev=2044528'
),
'menu-icons' => array(
'name' => 'Menu Icons',
'slug' => 'menu-icons',
'filename' => 'menu-icons',
'thumb_path' => 'https://ps.w.org/menu-icons/assets/icon-128x128.png?rev=1797515'
)
);
/* Create a Welcome Page */
add_action('admin_menu', array($this, 'welcome_register_menu'));
/* Enqueue Styles & Scripts for Welcome Page */
add_action('admin_enqueue_scripts', array($this, 'welcome_styles_and_scripts'));
/* Adds Footer Rating Text */
add_filter('admin_footer_text', array($this, 'admin_footer_text'));
/* Hide Notice */
add_filter('wp_loaded', array($this, 'hide_admin_notice'), 10);
/* Create a Welcome Page */
add_action('wp_loaded', array($this, 'admin_notice'), 20);
add_action('after_switch_theme', array($this, 'erase_hide_notice'));
add_action('wp_ajax_constructionlight_activate_plugin', array($this, 'activate_plugin'));
}
/** Trigger Welcome Message Notification */
public function admin_notice($hook) {
$hide_notice = get_option('constructionlight_hide_notice');
if (!$hide_notice) {
add_action('admin_notices', array($this, 'admin_notice_content'));
}
}
/** Welcome Message Notification */
public function admin_notice_content() {
$screen = get_current_screen();
if ('appearance_page_constructionlight-welcome' === $screen->id || (isset($screen->parent_file) && 'plugins.php' === $screen->parent_file && 'update' === $screen->id) || 'theme-install' === $screen->id) {
return;
}
$slug = $filename = 'one-click-demo-import';
?>
<div class="updated notice constructionlight-welcome-notice">
<div class="constructionlight-welcome-notice-wrap">
<h2><?php esc_html_e('Congratulations!', 'construction-light'); ?></h2>
<p><?php printf(esc_html__('%1$s is now installed and ready to use. You can start either by importing the ready made demo or get started by customizing it your self.', 'construction-light'), $this->theme_name); ?></p>
<div class="constructionlight-welcome-info">
<div class="constructionlight-welcome-thumb">
<img src="<?php echo esc_url(get_stylesheet_directory_uri() . '/screenshot.png'); ?>" alt="<?php echo esc_attr__('ConstructionLIght Demo', 'construction-light'); ?>">
</div>
<?php
if ('appearance_page_sparkle-theme-demo-importer' !== $screen->id) {
?>
<div class="constructionlight-welcome-import">
<h3><?php esc_html_e('Import Demo', 'construction-light'); ?></h3>
<p><?php esc_html_e('Click below to install and active One Click Demo Importer Plugin, It\'s help you to import demo.', 'construction-light'); ?></p>
<p><?php echo $this->generate_demo_installer_button(); ?></p>
</div>
<?php
}
?>
<div class="constructionlight-welcome-getting-started">
<h3><?php esc_html_e('Get Started', 'construction-light'); ?></h3>
<p><?php printf(esc_html__('Here you will find all the necessary links and information on how to use %s.', 'construction-light'), $this->theme_name); ?></p>
<p><a href="<?php echo esc_url(admin_url('admin.php?page=constructionlight-welcome')); ?>" class="button button-primary"><?php esc_html_e('Go to Setting Page', 'construction-light'); ?></a></p>
</div>
</div>
<a href="<?php echo wp_nonce_url(add_query_arg('constructionlight_hide_notice', 1), 'constructionlight_hide_notice_nonce', '_constructionlight_notice_nonce'); ?>" class="notice-close"><?php esc_html_e('Dismiss', 'construction-light'); ?></a>
</div>
</div>
<?php
}
/** Hide Admin Notice */
public function hide_admin_notice() {
if (isset($_GET['constructionlight_hide_notice']) && isset($_GET['_constructionlight_notice_nonce']) && current_user_can('manage_options')) {
if (!wp_verify_nonce(wp_unslash($_GET['_constructionlight_notice_nonce']), 'constructionlight_hide_notice_nonce')) {
wp_die(esc_html__('Action Failed. Something is Wrong.', 'construction-light'));
}
update_option('constructionlight_hide_notice', true);
}
}
/** Register Menu for Welcome Page */
public function welcome_register_menu() {
add_menu_page(esc_html__('Welcome', 'construction-light'), sprintf(esc_html__('%s', 'construction-light'), 'Theme Panel' ), 'manage_options', 'constructionlight-welcome', array($this, 'welcome_screen'), '', 2);
}
/** Welcome Page */
public function welcome_screen() {
$tabs = $this->tab_sections;
?>
<div class="welcome-wrap">
<div class="welcome-main-content">
<?php require_once get_template_directory() . '/inc/welcome/sections/header.php'; ?>
<div class="welcome-section-wrapper">
<?php $section = isset($_GET['section']) && array_key_exists($_GET['section'], $tabs) ? $_GET['section'] : 'getting_started'; ?>
<div class="welcome-section <?php echo esc_attr($section); ?> clearfix">
<?php require_once get_template_directory() . '/inc/welcome/sections/' . $section . '.php'; ?>
</div>
</div>
</div>
<div class="welcome-footer-content">
<?php require_once get_template_directory() . '/inc/welcome/sections/footer.php'; ?>
</div>
</div>
<?php
}
/** Enqueue Necessary Styles and Scripts for the Welcome Page */
public function welcome_styles_and_scripts($hook) {
if ('theme-install.php' !== $hook) {
$importer_params = array(
'installing_text' => esc_html__('Installing Demo Importer Plugin', 'construction-light'),
'activating_text' => esc_html__('Activating Demo Importer Plugin', 'construction-light'),
'importer_page' => esc_html__('Go to Demo Importer Page', 'construction-light'),
'importer_url' => admin_url('themes.php?page=sparkle-theme-demo-importer'),
'error' => esc_html__('Error! Reload the page and try again.', 'construction-light'),
);
wp_enqueue_style('constructionlight-welcome', get_template_directory_uri() . '/inc/welcome/css/welcome.css', array());
wp_enqueue_script('constructionlight-welcome', get_template_directory_uri() . '/inc/welcome/js/welcome.js', array('plugin-install', 'updates'), '', true);
wp_localize_script('constructionlight-welcome', 'importer_params', $importer_params);
}
}
/* Check if plugin is installed */
public function check_plugin_installed_state($slug, $filename) {
return file_exists(ABSPATH . 'wp-content/plugins/' . $slug . '/' . $filename . '.php') ? true : false;
}
/* Check if plugin is activated */
public function check_plugin_active_state($slug, $filename) {
return is_plugin_active($slug . '/' . $filename . '.php') ? true : false;
}
/** Generate Url for the Plugin Button */
public function plugin_generate_url($status, $slug, $file_name) {
switch ($status) {
case 'install':
return wp_nonce_url(add_query_arg(array(
'action' => 'install-plugin',
'plugin' => esc_attr($slug)
), network_admin_url('update.php')), 'install-plugin_' . esc_attr($slug));
break;
case 'inactive':
return add_query_arg(array(
'action' => 'deactivate',
'plugin' => rawurlencode(esc_attr($slug) . '/' . esc_attr($file_name) . '.php'),
'plugin_status' => 'all',
'paged' => '1',
'_wpnonce' => wp_create_nonce('deactivate-plugin_' . esc_attr($slug) . '/' . esc_attr($file_name) . '.php'),
), network_admin_url('plugins.php'));
break;
case 'active':
return add_query_arg(array(
'action' => 'activate',
'plugin' => rawurlencode(esc_attr($slug) . '/' . esc_attr($file_name) . '.php'),
'plugin_status' => 'all',
'paged' => '1',
'_wpnonce' => wp_create_nonce('activate-plugin_' . esc_attr($slug) . '/' . esc_attr($file_name) . '.php'),
), network_admin_url('plugins.php'));
break;
}
}
/** Ajax Plugin Activation */
public function activate_plugin() {
$slug = isset($_POST['slug']) ? $_POST['slug'] : '';
$file = isset($_POST['file']) ? $_POST['file'] : '';
$success = false;
//patterns-plugin-activate
activate_plugin('patterns-kit/plugins.php');
if (!empty($slug) && !empty($file)) {
$result = activate_plugin($slug . '/' . $file . '.php');
update_option('constructionlight_hide_notice', true);
if (!is_wp_error($result)) {
$success = true;
}
}
echo wp_json_encode(array('success' => $success));
die();
}
/** Adds Footer Notes */
public function admin_footer_text($text) {
$screen = get_current_screen();
if ('appearance_page_constructionlight-welcome' == $screen->id) {
$text = sprintf(esc_html__('Please leave us a %s rating if you like our theme . A huge thank you from SparkleThemes in advance!', 'construction-light'), '<a href="https://wordpress.org/support/theme/constructionlight/reviews/?filter=5#new-post" target="_blank">★★★★★</a>');
}
return $text;
}
/** Generate One Click Demo Importer Plugin Install Button Link */
public function generate_demo_installer_button() {
$slug = $filename = 'sparkle-demo-importer';
$import_url = '#';
if ($this->check_plugin_installed_state($slug, $filename) && !$this->check_plugin_active_state($slug, $filename)) {
$import_class = 'button button-primary constructionlight-activate-plugin';
$import_button_text = esc_html__('Activate Demo Importer Plugin', 'construction-light');
} elseif ($this->check_plugin_installed_state($slug, $filename)) {
$import_class = 'button button-primary';
$import_button_text = esc_html__('Go to Demo Importer Page', 'construction-light');
$import_url = admin_url( '/themes.php?page=sparkle-theme-demo-importer' );
} else {
$import_class = 'button button-primary constructionlight-install-plugin';
$import_button_text = esc_html__('Install Demo Importer Plugin', 'construction-light');
}
return '<a data-slug="' . esc_attr($slug) . '" data-filename="' . esc_attr($filename) . '" class="' . esc_attr($import_class) . '" href="' . $import_url . '">' . esc_html($import_button_text) . '</a>';
}
public function erase_hide_notice() {
delete_option('constructionlight_hide_notice');
}
}
new ConstructionLIght_Welcome();
endif;