config = $config; self::$instance->setup_config(); self::$instance->setup_actions(); } } } /** * Setup the class props based on the config array. */ public function setup_config() { $theme = wp_get_theme(); if ( is_child_theme() ) { $this->theme_name = $theme->parent()->get( 'Name' ); $this->theme = $theme->parent(); } else { $this->theme_name = $theme->get( 'Name' ); $this->theme = $theme->parent(); } $this->theme_name_base = strtolower(str_replace(' ', '-', $theme->get( 'Name' ))); $this->theme_version = $theme->get( 'Version' ); $this->theme_slug = $theme->get_template(); $this->menu_name = isset( $this->config['menu_name'] ) ? $this->config['menu_name'] : 'Why ' . $this->theme_name; $this->page_name = isset( $this->config['page_name'] ) ? $this->config['page_name'] : 'About ' . $this->theme_name; $this->notification = isset( $this->config['notification'] ) ? $this->config['notification'] : ( '

' . sprintf( 'Welcome! Thank you for choosing %1$s! To get started please make sure you visit our %2$swelcome page%3$s.', $this->theme_name, '', '' ) . '

' . sprintf( 'Get started with %s', $this->theme_name ) . '

' ); $this->tabs = isset( $this->config['tabs'] ) ? $this->config['tabs'] : array(); } /** * Setup the actions used for this page. */ public function setup_actions() { add_action( 'admin_body_class', array( $this, 'body_class' ) ); add_action( 'admin_menu', array( $this, 'register' ) ); add_action( 'wp_loaded', array( $this, 'hide_notice' ) ); /* activation notice */ add_action( 'admin_notices', array( $this, 'activation_admin_notice' ) ); /* enqueue script and style for about page */ add_action( 'admin_enqueue_scripts', array( $this, 'style_and_scripts' ) ); } /** * Add body class to admin area. */ function body_class( $classes ) { // Add theme specific classes $classes = $classes . ' theme-thinkupthemes'; $classes = $classes . ' theme-parent-' . strtolower($this->theme_name); $classes = $classes . ' theme-child-' . $this->theme_name_base; return $classes; } /** * Register the menu page under Appearance menu. */ function register() { // Add menu and subpages if ( ! empty( $this->menu_name ) && ! empty( $this->page_name ) ) { // Format theme name $theme_name = strtolower( $this->theme_name ); $theme_name = str_replace( '(lite)', '', $theme_name ); $theme_name = str_replace( '(free)', '', $theme_name ); $theme_name = ucfirst( trim( $theme_name ) ); // Appearance subpage add_theme_page( $this->menu_name, $this->page_name, 'activate_plugins', '/admin.php?page=thinkup-setup' ); // Menu page add_menu_page( 'Thinkup Setup', $theme_name . ' Theme', 'activate_plugins', 'thinkup-setup', '', get_template_directory_uri() . '/admin/main-toolbox/assets/img/icon.png' ); // Menu subpages add_submenu_page( 'thinkup-setup', esc_html__( 'Guide', strtolower( $theme_name ) ), esc_html__( 'Guide', strtolower( $theme_name ) ), 'activate_plugins', 'thinkup-setup', array( $this, 'page_setup' ) ); // add_submenu_page( // 'thinkup-setup', // esc_html__( 'Free vs Pro', strtolower( $theme_name ) ), // esc_html__( 'Free vs Pro', strtolower( $theme_name ) ), // 'activate_plugins', // 'thinkup-pro', // array( // $this, // 'page_free_pro' // ) // ); // add_submenu_page( // 'thinkup-setup', // esc_html__( 'Hire a Developer', strtolower( $theme_name ) ), // esc_html__( 'Hire a Developer', strtolower( $theme_name ) ), // 'activate_plugins', // esc_url( 'https://www.thinkupthemes.com/hire/' ) // ); add_submenu_page( 'thinkup-setup', esc_html__( 'Upgrade Now', strtolower( $theme_name ) ), esc_html__( 'Upgrade Now', strtolower( $theme_name ) ), 'activate_plugins', esc_url( 'https://www.thinkupthemes.com/themes/' . strtolower($theme_name) . '/?utm_campaign=upgrade&utm_medium=sidebar&utm_source=WordPress' ) ); // add_submenu_page( // 'thinkup-setup', // esc_html__( 'Addons', strtolower($theme_name) ), // esc_html__( 'Addons', strtolower($theme_name) ), // 'activate_plugins', // 'thinkup-addons', // array( // $this, // 'page_setup' // ) // ); } } /** * Adds an admin notice upon successful activation. */ public function activation_admin_notice() { global $pagenow; add_action( 'admin_notices', array( $this, 'welcome_admin_notice' ), 99 ); } /** * Display an admin notice linking to the about page */ public function welcome_admin_notice() { // Format theme name $theme_name = strtolower( $this->theme_name ); $theme_name = str_replace( '(lite)', '', $theme_name ); $theme_name = str_replace( '(free)', '', $theme_name ); if ( ! empty( $this->notification ) ) { // display notice if not previously dismissed if ( current_user_can( 'edit_theme_options' ) && !get_option( $theme_name . '_thinkup_notice_welcome' ) ) { echo '
'; echo ''; echo '' . esc_html__('Dismiss this notice.', strtolower( $theme_name )). ''; echo ''; echo wp_kses_post( $this->notification ); echo '
'; } } } /** * Render the main content page. */ public function page_setup() { if ( ! empty( $this->config['welcome_title'] ) ) { $welcome_title = $this->config['welcome_title']; } if ( ! empty( $this->config['welcome_content'] ) ) { $welcome_content = $this->config['welcome_content']; } if ( ! empty( $welcome_title ) || ! empty( $welcome_content ) || ! empty( $this->tabs ) ) { echo '
'; if ( ! empty( $welcome_title ) ) { echo '

'; echo esc_html( $welcome_title ); // if ( ! empty( $this->theme_version ) ) { // echo esc_html( $this->theme_version ) . ' '; // } echo '

'; } if ( ! empty( $welcome_content ) ) { echo '
' . wp_kses_post( $welcome_content ) . '
'; } /* Add upgrade box */ $upgrade = $this->config['upgrade']; echo '
'; echo '
'; echo '
'; echo '

' . esc_html( $upgrade['price_discount'] ) . '

'; echo '' . esc_html( $upgrade['button'] ) . ''; echo '
'; echo ''; echo '
'; echo '
'; /* Display tabs */ if ( ! empty( $this->tabs ) ) { $active_tab = isset( $_GET['tab'] ) ? wp_unslash( $_GET['tab'] ) : 'page_free_pro'; echo ''; /* Display content for current tab */ if ( method_exists( $this, $active_tab ) ) { $this->$active_tab(); } } echo '
'; } } /** * Get started tab */ public function page_start() { if ( ! empty( $this->config['page_start'] ) ) { $get_started = $this->config['page_start']; if ( ! empty( $get_started ) ) { echo '
'; foreach ( $get_started as $get_started_item ) { echo '
'; if ( ! empty( $get_started_item['title'] ) ) { echo '

' . $get_started_item['title'] . '

'; } if ( ! empty( $get_started_item['text'] ) ) { echo '

' . $get_started_item['text'] . '

'; } if ( ! empty( $get_started_item['button_link'] ) && ! empty( $get_started_item['button_label'] ) ) { echo '

'; $button_class = ''; if ( $get_started_item['is_button'] ) { $button_class = 'button button-primary'; } $button_new_tab = '_self'; if ( isset( $get_started_item['is_new_tab'] ) ) { if ( $get_started_item['is_new_tab'] ) { $button_new_tab = '_blank'; } } echo '' . $get_started_item['button_label'] . ''; echo '

'; } echo '
'; } echo '
'; } } } /** * Documentation */ public function page_docs() { echo '
'; if ( ! empty( $this->config['page_docs'] ) ) { $documentation_steps = $this->config['page_docs']; if ( ! empty( $documentation_steps ) ) { $section_name = NULL; echo '
'; echo '

' . $documentation_steps['intro']['title'] . '

'; echo wpautop( $documentation_steps['intro']['text_main'] ); echo '
'; foreach ( $documentation_steps as $documentation_step ) { /* Hide feature is needed */ if ( $documentation_step['hidden'] == 'true' ) { $documentation_step['hidden'] = ' hidden'; } /* Determine if side text should be added */ if( ! empty( $documentation_step['text_side'] ) ) { $class_main = ' menu-item-main-hasside'; } else { $class_main = NULL; } echo ''; $section_name = $documentation_step['section']; } } } echo '
'; } /** * Support tab */ public function page_support() { echo '
'; if ( ! empty( $this->config['page_support'] ) ) { $support_steps = $this->config['page_support']; if ( ! empty( $support_steps ) ) { foreach ( $support_steps as $support_step ) { echo '
'; if ( ! empty( $support_step['title'] ) ) { echo '

'; if ( ! empty( $support_step['icon'] ) ) { echo ''; } echo $support_step['title']; echo '

'; } if ( ! empty( $support_step['text'] ) ) { echo '

' . $support_step['text'] . '

'; } if ( ! empty( $support_step['button_link'] ) && ! empty( $support_step['button_label'] ) ) { echo '

'; $button_class = ''; if ( $support_step['is_button'] ) { $button_class = 'button button-primary'; } $button_new_tab = '_self'; if ( isset( $support_step['is_new_tab'] ) ) { if ( $support_step['is_new_tab'] ) { $button_new_tab = '_blank'; } } echo '' . $support_step['button_label'] . ''; echo '

'; } echo '
'; } } } echo '
'; } /** * Free vs PRO tab */ public function page_free_pro() { $free_pro = isset( $this->config['page_free_pro'] ) ? $this->config['page_free_pro'] : array(); if ( ! empty( $free_pro ) ) { if ( ! empty( $free_pro['free_theme_name'] ) && ! empty( $free_pro['pro_theme_name'] ) && ! empty( $free_pro['features'] ) && is_array( $free_pro['features'] ) ) { echo '
'; echo '
'; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; foreach ( $free_pro['features'] as $feature ) { /* Hide feature is needed */ if ( $feature['hidden'] == 'true' ) { $feature['hidden'] = ' class="hidden"'; } echo ''; if ( ! empty( $feature['title'] ) || ! empty( $feature['description'] ) ) { echo ''; } /* Add in for lite version */ if ( ! empty( $feature['is_in_lite'] ) && ( $feature['is_in_lite'] == 'true' ) && empty( $feature['is_in_lite_text'] ) ) { echo ''; } else if ( ! empty( $feature['is_in_lite_text'] ) ) { echo ''; } else { echo ''; } /* Add in for pro version */ if ( ! empty( $feature['is_in_pro'] ) && ( $feature['is_in_pro'] == 'true' ) && empty( $feature['is_in_pro_text'] ) ) { echo ''; } else if ( ! empty( $feature['is_in_pro_text'] ) ) { echo ''; } else { echo ''; } echo ''; } if ( ! empty( $free_pro['pro_theme_link'] ) && ! empty( $free_pro['get_pro_theme_label'] ) ) { echo ''; echo ''; echo ''; echo ''; } echo ''; echo '
' . esc_html( $free_pro['free_theme_name'] ) . '' . esc_html( $free_pro['pro_theme_name'] ) . '
'; if ( ! empty( $feature['title'] ) ) { echo '

' . wp_kses_post( $feature['title'] ) . '

'; } if ( ! empty( $feature['description'] ) ) { echo '

' . wp_kses_post( $feature['description'] ) . '

'; } echo '
' . $feature['is_in_lite_text'] . '' . $feature['is_in_pro_text'] . '
' . wp_kses_post( $free_pro['get_pro_theme_label'] ) . '
'; echo '
'; echo '
'; } } } /** * Load css and scripts for the about page */ public function style_and_scripts( $hook_suffix ) { global $pagenow; // enqueue global css files wp_enqueue_style( 'thinkup-global-css', get_template_directory_uri() . '/admin/main-toolbox/assets/css/toolbox-backend-global.css' ); // enqueue css files if ( 'themes.php' === $pagenow || strpos($hook_suffix, 'thinkup') !== false ) { wp_enqueue_style( 'thinkup-page-css', get_template_directory_uri() . '/admin/main-toolbox/assets/css/toolbox-backend.css' ); } // enqueue global js files wp_enqueue_script( 'thinkup-global-js', ( get_template_directory_uri() . '/admin/main-toolbox/assets/js/toolbox-backend-global.js' ), array( 'jquery' ), '', 'true' ); // enqueue js files if ( strpos($hook_suffix, 'thinkup') !== false ) { wp_enqueue_script( 'thinkup-page-js', ( get_template_directory_uri() . '/admin/main-toolbox/assets/js/toolbox-backend.js' ), array( 'jquery' ), '', 'true' ); } } /** * Hide welcome notice when dismissed. */ public function hide_notice() { if (isset($_GET['thinkup-hide-notice']) && isset($_GET['_thinkup_notice_nonce'])) { if (!wp_verify_nonce($_GET['_thinkup_notice_nonce'], 'thinkup_hide_notices_nonce')) { wp_die(esc_html__('Action failed. Please refresh the page and retry.', strtolower( $theme_name ))); } if (!current_user_can('edit_theme_options')) { wp_die(esc_html__('You do not have the necessary permission to perform this action.', strtolower( $theme_name ))); } $hide_notice = sanitize_text_field($_GET['thinkup-hide-notice']); update_option('thinkup_notice_' . $hide_notice, 1); } } } }