config = $config; self::$instance->setup_config(); self::$instance->setup_actions(); } } } public function setup_config() { global $arcade_games_customizer_notify_recommended_plugins; global $arcade_games_customizer_notify_arcade_games_recommended_actions; global $arcade_games_install_button_label; global $arcade_games_activate_button_label; global $arcade_games_deactivate_button_label; $this->arcade_games_recommended_actions = isset( $this->config['arcade_games_recommended_actions'] ) ? $this->config['arcade_games_recommended_actions'] : array(); $this->recommended_plugins = isset( $this->config['recommended_plugins'] ) ? $this->config['recommended_plugins'] : array(); $this->arcade_games_recommended_actions_title = isset( $this->config['arcade_games_recommended_actions_title'] ) ? $this->config['arcade_games_recommended_actions_title'] : ''; $this->arcade_games_recommended_plugins_title = isset( $this->config['arcade_games_recommended_plugins_title'] ) ? $this->config['arcade_games_recommended_plugins_title'] : ''; $this->dismiss_button = isset( $this->config['dismiss_button'] ) ? $this->config['dismiss_button'] : ''; $arcade_games_customizer_notify_recommended_plugins = array(); $arcade_games_customizer_notify_arcade_games_recommended_actions = array(); if ( isset( $this->recommended_plugins ) ) { $arcade_games_customizer_notify_recommended_plugins = $this->recommended_plugins; } if ( isset( $this->arcade_games_recommended_actions ) ) { $arcade_games_customizer_notify_arcade_games_recommended_actions = $this->arcade_games_recommended_actions; } $arcade_games_install_button_label = isset( $this->config['arcade_games_install_button_label'] ) ? $this->config['arcade_games_install_button_label'] : ''; $arcade_games_activate_button_label = isset( $this->config['arcade_games_activate_button_label'] ) ? $this->config['arcade_games_activate_button_label'] : ''; $arcade_games_deactivate_button_label = isset( $this->config['arcade_games_deactivate_button_label'] ) ? $this->config['arcade_games_deactivate_button_label'] : ''; } public function setup_actions() { // Register the section add_action( 'customize_register', array( $this, 'arcade_games_plugin_notification_customize_register' ) ); // Enqueue scripts and styles add_action( 'customize_controls_enqueue_scripts', array( $this, 'arcade_games_customizer_notify_scripts_for_customizer' ), 0 ); /* ajax callback for dismissable recommended actions */ add_action( 'wp_ajax_quality_customizer_notify_dismiss_action', array( $this, 'arcade_games_customizer_notify_dismiss_recommended_action_callback' ) ); add_action( 'wp_ajax_ti_customizer_notify_dismiss_recommended_plugins', array( $this, 'arcade_games_customizer_notify_dismiss_recommended_plugins_callback' ) ); } public function arcade_games_customizer_notify_scripts_for_customizer() { wp_enqueue_style( 'arcade-games-customizer-notify-css', get_template_directory_uri() . '/core/includes/customizer-notice/css/arcade-games-customizer-notify.css', array()); wp_enqueue_style( 'plugin-install' ); wp_enqueue_script( 'plugin-install' ); wp_add_inline_script( 'plugin-install', 'var pagenow = "customizer";' ); wp_enqueue_script( 'updates' ); wp_enqueue_script( 'arcade-games-customizer-notify-js', get_template_directory_uri() . '/core/includes/customizer-notice/js/arcade-games-customizer-notify.js', array( 'customize-controls' )); wp_localize_script( 'arcade-games-customizer-notify-js', 'joblistingCustomizercompanionObject', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'template_directory' => get_template_directory_uri(), 'base_path' => admin_url(), 'activating_string' => __( 'Activating', 'arcade-games' ), ) ); } public function arcade_games_plugin_notification_customize_register( $wp_customize ) { require_once get_template_directory() . '/core/includes/customizer-notice/arcade-games-customizer-notify-section.php'; $wp_customize->register_section_type( 'Arcade_Games_Customizer_Notify_Section' ); $wp_customize->add_section( new Arcade_Games_Customizer_Notify_Section( $wp_customize, 'arcade-games-customizer-notify-section', array( 'title' => $this->arcade_games_recommended_actions_title, 'plugin_text' => $this->arcade_games_recommended_plugins_title, 'dismiss_button' => $this->dismiss_button, 'priority' => 0, ) ) ); } public function arcade_games_customizer_notify_dismiss_recommended_action_callback() { global $arcade_games_customizer_notify_arcade_games_recommended_actions; $action_id = ( isset( $_GET['id'] ) ) ? $_GET['id'] : 0; echo esc_html( $action_id ); /* this is needed and it's the id of the dismissable required action */ if ( ! empty( $action_id ) ) { if ( get_option( 'arcade_games_customizer_notify_show' ) ) { $arcade_games_customizer_notify_show_arcade_games_recommended_actions = get_option( 'arcade_games_customizer_notify_show' ); switch ( $_GET['todo'] ) { case 'add': $arcade_games_customizer_notify_show_arcade_games_recommended_actions[ $action_id ] = true; break; case 'dismiss': $arcade_games_customizer_notify_show_arcade_games_recommended_actions[ $action_id ] = false; break; } update_option( 'arcade_games_customizer_notify_show', $arcade_games_customizer_notify_show_arcade_games_recommended_actions ); } else { $arcade_games_customizer_notify_show_arcade_games_recommended_actions = array(); if ( ! empty( $arcade_games_customizer_notify_arcade_games_recommended_actions ) ) { foreach ( $arcade_games_customizer_notify_arcade_games_recommended_actions as $arcade_games_lite_customizer_notify_recommended_action ) { if ( $arcade_games_lite_customizer_notify_recommended_action['id'] == $action_id ) { $arcade_games_customizer_notify_show_arcade_games_recommended_actions[ $arcade_games_lite_customizer_notify_recommended_action['id'] ] = false; } else { $arcade_games_customizer_notify_show_arcade_games_recommended_actions[ $arcade_games_lite_customizer_notify_recommended_action['id'] ] = true; } } update_option( 'arcade_games_customizer_notify_show', $arcade_games_customizer_notify_show_arcade_games_recommended_actions ); } } } die(); } public function arcade_games_customizer_notify_dismiss_recommended_plugins_callback() { $action_id = ( isset( $_GET['id'] ) ) ? $_GET['id'] : 0; echo esc_html( $action_id ); /* this is needed and it's the id of the dismissable required action */ if ( ! empty( $action_id ) ) { $arcade_games_lite_customizer_notify_show_recommended_plugins = get_option( 'arcade_games_customizer_notify_show_recommended_plugins' ); switch ( $_GET['todo'] ) { case 'add': $arcade_games_lite_customizer_notify_show_recommended_plugins[ $action_id ] = false; break; case 'dismiss': $arcade_games_lite_customizer_notify_show_recommended_plugins[ $action_id ] = true; break; } update_option( 'arcade_games_customizer_notify_show_recommended_plugins', $arcade_games_lite_customizer_notify_show_recommended_plugins ); } die(); } }