setup_actions(); } return $instance; } /** * Constructor method. * * @since 1.0.0 * @access private * @return void */ private function __construct() {} /** * Sets up initial actions. * * @since 1.0.0 * @access private * @return void */ private function setup_actions() { // Register panels, sections, settings, controls, and partials. add_action( 'customize_register', array( $this, 'sections' ),999 ); } /** * Sets up the customizer sections. * * @since 1.0.0 * @access public * @param object $manager * @return void */ public function sections( $manager ) { // Load custom sections. require_once get_template_directory() . '/inc/customizer/controls/code/upgrade/section-pro.php'; // Register custom section types. $manager->register_section_type( 'Shopire_Customize_Section_Pro' ); // Register sections. $manager->add_section( new Shopire_Customize_Section_Pro( $manager, 'Shopire', array( 'title' => esc_html__( 'BuyCart Pro', 'buycart' ), 'pro_text' => esc_html__( 'Upgrade to Pro','buycart' ), 'pro_url' => esc_url('https://wpfable.com/themes/buycart-premium/'), 'pro_demo_text' => esc_html__( 'Pro Demo','buycart' ), 'pro_demo_url' => esc_url('https://demos.wpfable.com/premium/buycart/'), 'help_text' => esc_html__( 'Ask Help ?','buycart' ), 'help_url' => esc_url('https://wpfable.com/support/'), 'priority' => 0 ) ) ); } } // Doing this customizer thang! BuyCart_Customize::get_instance();