template; $this->name = $theme->name; $this->pro_slug = str_replace( '-lite', '', $slug ); $this->utm = '?utm_source=WordPress&utm_medium=link&utm_campaign=' . $slug; // Register panels, sections, settings, controls, and partials. add_action( 'customize_register', array( $this, 'sections' ) ); // Register scripts and styles for the controls. add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_control_scripts' ), 0 ); } /** * Sets up the customizer sections. * * @param WP_Customize_Manager $manager WP_Customize_Manager instance. */ public function sections( $manager ) { // Load custom sections. require get_template_directory() . '/inc/customizer-pro/class-digimag-lite-customizer-section-pro.php'; // Register custom section types. $manager->register_section_type( 'Digimag_Lite_Customizer_Section_Pro' ); // Register sections. $manager->add_section( new Digimag_Lite_Customizer_Section_Pro( $manager, 'digimag-pro', array( 'section_type' => 'pro', 'title' => esc_html__( 'Ready For More?', 'digimag-lite' ), 'pro_text' => esc_html__( 'Upgrade To PRO', 'digimag-lite' ), 'pro_url' => "https://gretathemes.com/wordpress-themes/{$this->pro_slug}/{$this->utm}", 'priority' => 99999999, ) ) ); $manager->add_section( new Digimag_Lite_Customizer_Section_Pro( $manager, 'digimag-pro-doc', array( 'section_type' => 'doc', 'doc_title' => esc_html__( 'Need Some Help?', 'digimag-lite' ), 'doc_text' => esc_html__( 'Need help setting up your site?', 'digimag-lite' ), 'doc_url' => "https://gretathemes.com/docs/{$this->pro_slug}/{$this->utm}", 'priority' => 0, ) ) ); } /** * Loads theme customizer CSS. */ public function enqueue_control_scripts() { wp_enqueue_script( 'digimag-lite-customize-pro-script', get_template_directory_uri() . '/inc/customizer-pro/customize-controls.js', array( 'customize-controls' ) ); wp_enqueue_style( 'digimag-lite-customize-pro-style', get_template_directory_uri() . '/inc/customizer-pro/customize-controls.css' ); } }